From 0050f41e52b2500a7ada9dd1096ccbd85c9d54ee Mon Sep 17 00:00:00 2001 From: Ryan Lopopolo Date: Fri, 12 Aug 2022 22:28:06 -0700 Subject: [PATCH] Fix a broken sentence in README and crate docs, prepare for v1.0.1 release --- Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 191f12a..d0f0fd9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "posix-space" -version = "1.0.0" # remember to set `html_root_url` in `src/lib.rs`. +version = "1.0.1" # remember to set `html_root_url` in `src/lib.rs`. authors = ["Ryan Lopopolo "] license = "MIT" edition = "2018" diff --git a/README.md b/README.md index 626490c..98da95e 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ [![API trunk](https://img.shields.io/badge/docs-trunk-blue.svg)](https://artichoke.github.io/posix-space/posix_space/) A small crate which determines if a byte is classified as a space in the POSIX -locale [POSIX.1-2017], chapter 7, [Locale]. +locale per [POSIX.1-2017], chapter 7, [Locale]. [posix.1-2017]: https://pubs.opengroup.org/onlinepubs/9699919799/mindex.html [locale]: @@ -33,7 +33,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -posix-space = "1.0.0" +posix-space = "1.0.1" ``` Then classify bytes like: diff --git a/src/lib.rs b/src/lib.rs index 2707f9e..6177110 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -17,8 +17,8 @@ #![cfg_attr(docsrs, feature(doc_cfg))] #![cfg_attr(docsrs, feature(doc_alias))] -//! A small crate which determines if a byte is classified as a space in the POSIX locale -//! [POSIX.1-2017], chapter 7, [Locale]. +//! A small crate which determines if a byte is classified as a space in the +//! POSIX locale per [POSIX.1-2017], chapter 7, [Locale]. //! //! [POSIX.1-2017]: https://pubs.opengroup.org/onlinepubs/9699919799/mindex.html //! [Locale]: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap07.html @@ -35,7 +35,7 @@ //! //! [`isspace`]: https://linux.die.net/man/3/isspace -#![doc(html_root_url = "https://docs.rs/posix-space/1.0.0")] +#![doc(html_root_url = "https://docs.rs/posix-space/1.0.1")] #![no_std] // Ensure code blocks in README.md compile