-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Released 2023-07-09. See also <https://rasmus.krats.se/2023/rsass028.en> Progress: 4697 of 7032 tests passed. * `@media` rules are now handled specifically as `@media` rules, rather than as unknown `@`-rules (PR #172). * `@extend` is now explicitly unsupported (gives an error message, rather than behaving as an unknown `@` rule) (PR #173). * Improved handling of `@keyframes` and `@font-face`. * Changed output format of non-finite numbers to match sass spec. They are now wrapped in `calc`, like `calc(infinite)` or `calc(NaN * 1deg)`. * Fixed some difference between module and builtin color functions `grayscale` and `invert`. * The `deg` unit is no longer spelled out in `hsl` / `hsla` colors. * Improved handling of custom properties in raw css input. * MSRV of rsass (the lib crate) is now 1.60.0 (required by trancient dev dependency log). * Improved parsing of quoted strings (some syntax errors was accepted). * Removed the `Error::error(_)` shortcut for creating text-only errors (some text only errors remains, created directly as the `Error::S(String)` variant, that should probably be removed too in the future). * Fixed a typo in help text, thanks @greyhillman (PR #170). * Added an input check in selectors.append function. * Changed `Number` internals to make values smaller in memory. * Minor internal cleanup. * Updated syn in rsass-macros to 2.0.2. * Updated sass-spec test suite to 2023-06-30.
- Loading branch information
Showing
9 changed files
with
16 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rsass-cli" | ||
version = "0.27.1-PRE" | ||
version = "0.28.0" | ||
authors = ["Rasmus Kaj <[email protected]>"] | ||
description = "Commandline interface for rsass, compiles scss to css." | ||
categories = ["command-line-utilities", "web-programming"] | ||
|
@@ -19,5 +19,5 @@ path = "src/main.rs" | |
unimplemented_args = [] | ||
|
||
[dependencies] | ||
rsass = { path = "../rsass" } | ||
rsass = { path = "../rsass", version = "0.28.0" } | ||
clap = { version = "4.1.1", features = ["derive", "wrap_help"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rsass" | ||
version = "0.27.1-PRE" | ||
version = "0.28.0" | ||
authors = ["Rasmus Kaj <[email protected]>"] | ||
categories = ["web-programming"] | ||
keywords = ["scss", "sass", "css", "web"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "spectest" | ||
version = "0.27.1-PRE" | ||
version = "0.28.0" | ||
authors = ["Rasmus Kaj <[email protected]>"] | ||
description = "Converts sass-spec to rust tests." | ||
edition = "2021" | ||
rust-version = "1.60.0" | ||
|
||
[dependencies] | ||
rsass = { path = "../rsass" } | ||
rsass = { path = "../rsass", version = "0.28.0" } | ||
deunicode = "1.0" | ||
hrx-get = "0.2.0" | ||
lazy-regex = "3.0.0" | ||
|