Skip to content

Commit 6f51c7a

Browse files
committed
Update MSRV for rsass-cli.
Rustc 1.74 is now required by `clap_builder` so update `rsass-cli` to same. No change for the lib and macros.
1 parent 51865fc commit 6f51c7a

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/rust.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
matrix:
3737
rust:
3838
- stable
39-
- 1.70.0
39+
- 1.74.1
4040
- beta
4141
- nightly
4242
steps:
@@ -56,7 +56,7 @@ jobs:
5656
matrix:
5757
rust:
5858
- stable
59-
- 1.70.0
59+
- 1.74.1
6060
steps:
6161
- uses: actions/checkout@v3
6262
- uses: dtolnay/rust-toolchain@master
@@ -73,7 +73,7 @@ jobs:
7373
matrix:
7474
rust:
7575
- stable
76-
- 1.70.0
76+
- 1.74.1
7777
steps:
7878
- uses: actions/checkout@v3
7979
- uses: dtolnay/rust-toolchain@master
@@ -89,6 +89,7 @@ jobs:
8989
strategy:
9090
matrix:
9191
rust:
92+
- 1.70.0
9293
- 1.68.2
9394
- 1.61.0
9495
steps:

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ project adheres to
2020
for selector functions, but should replace the old css selector
2121
implementation in release 0.29).
2222
* Some other minor code cleanup.
23+
* MSRV is now 1.74 for rsass-cli (and still 1.61 for the lib and macros).
2324
* Updated sass-spec test suite to 2024-02-06.
2425

2526

rsass-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repository = "https://github.com/kaj/rsass"
99
readme = "README.md"
1010
license = "MIT OR Apache-2.0"
1111
edition = "2021"
12-
rust-version = "1.70.0"
12+
rust-version = "1.74.0"
1313

1414
[[bin]]
1515
name = "rsass"

0 commit comments

Comments
 (0)