diff --git a/Cargo.toml b/Cargo.toml index 7e5ab37f..f2636c83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "strftime-ruby" # remember to set `html_root_url` in `src/lib.rs`. -version = "1.0.0" +version = "1.0.1" authors = ["Ryan Lopopolo ", "x-hgg-x"] license = "MIT" edition = "2021" @@ -12,7 +12,7 @@ documentation = "https://docs.rs/strftime-ruby" homepage = "https://github.com/artichoke/strftime-ruby" description = "Ruby `Time#strftime` parser and formatter" keywords = ["ruby", "strftime", "time"] -categories = ["date-and-time", "no-std", "parser-implementations", "value-formatting"] +categories = ["date-and-time", "no-std", "no-std::no-alloc", "parser-implementations", "value-formatting"] include = ["src/**/*", "tests/**/*", "LICENSE", "README.md"] [lib] diff --git a/README.md b/README.md index 1322679c..d5e259f1 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -strftime-ruby = "1.0.0" +strftime-ruby = "1.0.1" ``` ## Crate features diff --git a/src/lib.rs b/src/lib.rs index bdb9ed1c..b452a129 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -112,7 +112,7 @@ //! days in that year. The days before the first week are in the last week of //! the previous year. -#![doc(html_root_url = "https://docs.rs/strftime-ruby/1.0.0")] +#![doc(html_root_url = "https://docs.rs/strftime-ruby/1.0.1")] #![no_std] #[cfg(feature = "alloc")]