bump MSRV to 1.64.0
This commit is contained in:
parent
4c903ddb2a
commit
491be199f7
6
.github/workflows/tests.yml
vendored
6
.github/workflows/tests.yml
vendored
@ -14,7 +14,7 @@ jobs:
|
|||||||
|
|
||||||
- uses: dtolnay/rust-toolchain@master
|
- uses: dtolnay/rust-toolchain@master
|
||||||
with:
|
with:
|
||||||
toolchain: "1.59.0"
|
toolchain: "1.64.0"
|
||||||
|
|
||||||
- name: version info
|
- name: version info
|
||||||
run: rustc --version; cargo --version;
|
run: rustc --version; cargo --version;
|
||||||
@ -30,7 +30,7 @@ jobs:
|
|||||||
|
|
||||||
- uses: dtolnay/rust-toolchain@master
|
- uses: dtolnay/rust-toolchain@master
|
||||||
with:
|
with:
|
||||||
toolchain: "1.59.0"
|
toolchain: "1.64.0"
|
||||||
|
|
||||||
- run: |
|
- run: |
|
||||||
rustup component add rustfmt
|
rustup component add rustfmt
|
||||||
@ -44,7 +44,7 @@ jobs:
|
|||||||
|
|
||||||
- uses: dtolnay/rust-toolchain@master
|
- uses: dtolnay/rust-toolchain@master
|
||||||
with:
|
with:
|
||||||
toolchain: "1.59.0"
|
toolchain: "1.64.0"
|
||||||
|
|
||||||
- run: |
|
- run: |
|
||||||
rustup component add clippy
|
rustup component add clippy
|
||||||
|
@ -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
|
# 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
|
- fix various module system bugs when combined with `@import`. this is potentially breaking in rare cases where users were relying on the incorrect behavior
|
||||||
|
@ -88,7 +88,7 @@ around comments in expanded mode or error messages.
|
|||||||
|
|
||||||
## Versioning
|
## 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.
|
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.
|
`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.
|
||||||
|
@ -9,6 +9,7 @@ categories = ["web-programming"]
|
|||||||
keywords = ["scss", "sass", "css", "web"]
|
keywords = ["scss", "sass", "css", "web"]
|
||||||
repository = "https://github.com/connorskees/grass"
|
repository = "https://github.com/connorskees/grass"
|
||||||
authors = ["Connor Skees <39542938+ConnorSkees@users.noreply.github.com>"]
|
authors = ["Connor Skees <39542938+ConnorSkees@users.noreply.github.com>"]
|
||||||
|
rust-version = "1.64.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "grass_compiler"
|
name = "grass_compiler"
|
||||||
|
@ -10,6 +10,7 @@ keywords = ["scss", "sass", "css", "web"]
|
|||||||
repository = "https://github.com/connorskees/grass"
|
repository = "https://github.com/connorskees/grass"
|
||||||
authors = ["Connor Skees <39542938+ConnorSkees@users.noreply.github.com>"]
|
authors = ["Connor Skees <39542938+ConnorSkees@users.noreply.github.com>"]
|
||||||
include = ["src", "Cargo.toml", "../README.md", "../CHANGELOG.md", "../LICENSE"]
|
include = ["src", "Cargo.toml", "../README.md", "../CHANGELOG.md", "../LICENSE"]
|
||||||
|
rust-version = "1.64.0"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
@ -11,6 +11,7 @@ authors = ["Connor Skees <39542938+ConnorSkees@users.noreply.github.com>"]
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
include = ["src", "Cargo.toml", "README.md", "CHANGELOG.md", "Cargo.lock", "LICENSE"]
|
include = ["src", "Cargo.toml", "README.md", "CHANGELOG.md", "Cargo.lock", "LICENSE"]
|
||||||
default-run = "grass"
|
default-run = "grass"
|
||||||
|
rust-version = "1.64.0"
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "grass"
|
name = "grass"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user