From c6eab3ecbf97d5944cdfc8c3caf43038c47e2978 Mon Sep 17 00:00:00 2001 From: Ryan Lopopolo Date: Sun, 30 Aug 2026 13:12:25 -0700 Subject: [PATCH] Prepare 1.3.2 release --- CONTRIBUTING.md | 4 ++++ Cargo.toml | 2 +- README.md | 6 +++++- src/lib.rs | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a805882b..fae5fbdb 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 6123714c..658191fa 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 0b320b54..9e7e15b9 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 c1146efa..3f0c4885 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")]