diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a805882..fae5fbd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,6 +2,10 @@ Welcome to [Artichoke]. Thanks for taking the time to contribute. +> [!NOTE] +> This crate is feature complete and frozen. It will not receive further +> development. + `strftime-ruby` implements Ruby-compatible `Time#strftime` formatting. If its formatting differs from Ruby or POSIX behavior, please [file an issue]. diff --git a/Cargo.toml b/Cargo.toml index 6123714..658191f 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.3.1" +version = "1.3.2" authors = ["Ryan Lopopolo ", "x-hgg-x"] license = "MIT" edition = "2021" diff --git a/README.md b/README.md index 0b320b5..9e7e15b 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,10 @@ [![Crate](https://img.shields.io/crates/v/strftime-ruby.svg)](https://crates.io/crates/strftime-ruby) [![API](https://docs.rs/strftime-ruby/badge.svg)](https://docs.rs/strftime-ruby) +> [!NOTE] +> This crate is feature complete and frozen. It will not receive further +> development. + `strftime-ruby` is a Ruby 3.1.2 compatible implementation of the [`Time#strftime`] method. The `strftime` routines provided by this crate are [POSIX-compatible], except for intentionally ignoring the `E` and `O` modified @@ -34,7 +38,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -strftime-ruby = "1.3.1" +strftime-ruby = "1.3.2" ``` ## Crate features diff --git a/src/lib.rs b/src/lib.rs index c1146ef..3f0c488 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -120,7 +120,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.3.1")] +#![doc(html_root_url = "https://docs.rs/strftime-ruby/1.3.2")] #![no_std] #[cfg(feature = "alloc")]