bump MSRV to 1.64.0

This commit is contained in:
Connor Skees 2023-07-14 16:08:34 +00:00
parent 4c903ddb2a
commit 491be199f7
6 changed files with 13 additions and 4 deletions

View File

@ -14,7 +14,7 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.59.0"
toolchain: "1.64.0"
- name: version info
run: rustc --version; cargo --version;
@ -30,7 +30,7 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.59.0"
toolchain: "1.64.0"
- run: |
rustup component add rustfmt
@ -44,7 +44,7 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.59.0"
toolchain: "1.64.0"
- run: |
rustup component add clippy

View File

@ -7,6 +7,12 @@
-->
# 0.13.1
- update `clap` dependency to 4.x.x to silence `atty` security warning
- bump MSRV to 1.64.0 for new `clap` version
- fix bug in which `--no-charset` flag wasn't respected
# 0.13.0
- fix various module system bugs when combined with `@import`. this is potentially breaking in rare cases where users were relying on the incorrect behavior

View File

@ -88,7 +88,7 @@ around comments in expanded mode or error messages.
## Versioning
The minimum supported rust version (MSRV) of `grass` is `1.59.0`. An increase to the MSRV will correspond with a minor version bump. The current MSRV is not a hard minimum, but future bugfix
The minimum supported rust version (MSRV) of `grass` is `1.64.0`. An increase to the MSRV will correspond with a minor version bump. The current MSRV is not a hard minimum, but future bugfix
versions of `grass` are not guaranteed to work on versions prior to this.
`grass` currently targets `dart-sass` version `1.54.3`. An increase to this number will correspond to either a minor or bugfix version bump, depending on the changes.

View File

@ -9,6 +9,7 @@ categories = ["web-programming"]
keywords = ["scss", "sass", "css", "web"]
repository = "https://github.com/connorskees/grass"
authors = ["Connor Skees <39542938+ConnorSkees@users.noreply.github.com>"]
rust-version = "1.64.0"
[lib]
name = "grass_compiler"

View File

@ -10,6 +10,7 @@ keywords = ["scss", "sass", "css", "web"]
repository = "https://github.com/connorskees/grass"
authors = ["Connor Skees <39542938+ConnorSkees@users.noreply.github.com>"]
include = ["src", "Cargo.toml", "../README.md", "../CHANGELOG.md", "../LICENSE"]
rust-version = "1.64.0"
[lib]
proc-macro = true

View File

@ -11,6 +11,7 @@ authors = ["Connor Skees <39542938+ConnorSkees@users.noreply.github.com>"]
edition = "2021"
include = ["src", "Cargo.toml", "README.md", "CHANGELOG.md", "Cargo.lock", "LICENSE"]
default-run = "grass"
rust-version = "1.64.0"
[[bin]]
name = "grass"