Skip to content

Commit ec4d0da

Browse files
committed
Set MSRV to 1.57 so we can panic in const functions.
1 parent cda37a4 commit ec4d0da

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
rust:
1515
- stable
1616
- nightly
17-
- 1.56.0 # lowest supported version
17+
- 1.57.0 # lowest supported version
1818
flags:
1919
- --all-features
2020
- --no-default-features
@@ -38,7 +38,7 @@ jobs:
3838
rust:
3939
- stable
4040
- nightly
41-
- 1.56.0 # lowest supported version
41+
- 1.57.0 # lowest supported version
4242
steps:
4343
- uses: actions/checkout@v2
4444
- uses: actions-rs/toolchain@v1
@@ -59,7 +59,7 @@ jobs:
5959
rust:
6060
- stable
6161
- nightly
62-
- 1.56.0 # lowest supported version
62+
- 1.57.0 # lowest supported version
6363
steps:
6464
- uses: actions/checkout@v2
6565
- uses: actions-rs/toolchain@v1

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
2424
stop it now. Converting between `SmartString` and `String` using `From` and `Into` traits is
2525
still efficient and allocation free.
2626

27+
- The minimum supported rustc version is now 1.57.0.
28+
2729
## [0.2.10] - 2022-02-20
2830

2931
### CHANGED

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ readme = "./README.md"
1111
categories = ["data-structures"]
1212
keywords = ["cache-local", "cpu-cache", "small-string", "sso", "inline-string"]
1313
exclude = ["release.toml", "proptest-regressions/**"]
14-
rust-version = "1.56"
14+
rust-version = "1.57"
1515

1616
[package.metadata.docs.rs]
1717
features = ["arbitrary", "proptest", "serde"]

0 commit comments

Comments
 (0)