Skip to content

Commit 5d9b1c1

Browse files
committed
Bump MSRV to 1.76.0
1 parent 7e9661a commit 5d9b1c1

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- name: Install Rust toolchain
7474
uses: artichoke/setup-rust/build-and-test@v1.12.1
7575
with:
76-
toolchain: "1.58.0"
76+
toolchain: "1.76.0"
7777

7878
- name: Compile
7979
run: cargo build --verbose

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "strftime-ruby"
33
# remember to set `html_root_url` in `src/lib.rs`.
4-
version = "1.0.1"
4+
version = "1.1.0"
55
authors = ["Ryan Lopopolo <rjl@hyperbo.la>", "x-hgg-x"]
66
license = "MIT"
77
edition = "2021"
8-
rust-version = "1.58.0"
8+
rust-version = "1.76.0"
99
readme = "README.md"
1010
repository = "https://github.com/artichoke/strftime-ruby"
1111
documentation = "https://docs.rs/strftime-ruby"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Add this to your `Cargo.toml`:
3737
3838
```toml
3939
[dependencies]
40-
strftime-ruby = "1.0.1"
40+
strftime-ruby = "1.1.0"
4141
```
4242
4343
## Crate features
@@ -64,7 +64,7 @@ All features are enabled by default.
6464

6565
### Minimum Supported Rust Version
6666

67-
This crate requires at least Rust 1.58.0. This version can be bumped in minor
67+
This crate requires at least Rust 1.76.0. This version can be bumped in minor
6868
releases.
6969

7070
## License

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
//! days in that year. The days before the first week are in the last week of
113113
//! the previous year.
114114
115-
#![doc(html_root_url = "https://docs.rs/strftime-ruby/1.0.1")]
115+
#![doc(html_root_url = "https://docs.rs/strftime-ruby/1.1.0")]
116116
#![no_std]
117117

118118
#[cfg(feature = "alloc")]

0 commit comments

Comments
 (0)