Skip to content

Commit

Permalink
bump MSRV to 1.64.0
Browse files Browse the repository at this point in the history
  • Loading branch information
connorskees committed Jul 14, 2023
1 parent 4c903dd commit 491be19
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -30,7 +30,7 @@ jobs:

- uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.59.0"
toolchain: "1.64.0"

- run: |
rustup component add rustfmt
Expand All @@ -44,7 +44,7 @@ jobs:

- uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.59.0"
toolchain: "1.64.0"

- run: |
rustup component add clippy
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
1 change: 1 addition & 0 deletions crates/compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 1 addition & 0 deletions crates/include_sass/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions crates/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 491be19

Please sign in to comment.