Skip to content
This repository was archived by the owner on Aug 31, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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].

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <rjl@hyperbo.la>", "x-hgg-x"]
license = "MIT"
edition = "2021"
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -34,7 +38,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
strftime-ruby = "1.3.1"
strftime-ruby = "1.3.2"
```

## Crate features
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down