Skip to content

Commit

Permalink
Bump MSRV to 1.76.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lopopolo committed Dec 8, 2024
1 parent 7e9661a commit 5d9b1c1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Install Rust toolchain
uses: artichoke/setup-rust/[email protected]
with:
toolchain: "1.58.0"
toolchain: "1.76.0"

- name: Compile
run: cargo build --verbose
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "strftime-ruby"
# remember to set `html_root_url` in `src/lib.rs`.
version = "1.0.1"
version = "1.1.0"
authors = ["Ryan Lopopolo <[email protected]>", "x-hgg-x"]
license = "MIT"
edition = "2021"
rust-version = "1.58.0"
rust-version = "1.76.0"
readme = "README.md"
repository = "https://github.com/artichoke/strftime-ruby"
documentation = "https://docs.rs/strftime-ruby"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
strftime-ruby = "1.0.1"
strftime-ruby = "1.1.0"
```
## Crate features
Expand All @@ -64,7 +64,7 @@ All features are enabled by default.

### Minimum Supported Rust Version

This crate requires at least Rust 1.58.0. This version can be bumped in minor
This crate requires at least Rust 1.76.0. This version can be bumped in minor
releases.

## License
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.1")]
#![doc(html_root_url = "https://docs.rs/strftime-ruby/1.1.0")]
#![no_std]

#[cfg(feature = "alloc")]
Expand Down

0 comments on commit 5d9b1c1

Please sign in to comment.