bump version to 0.12.2
This commit is contained in:
parent
942bb20d75
commit
cd193dd006
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
@ -15,7 +15,7 @@ jobs:
|
|||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: nightly
|
toolchain: stable
|
||||||
override: true
|
override: true
|
||||||
|
|
||||||
- name: version info
|
- name: version info
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
-->
|
-->
|
||||||
|
|
||||||
# 0.12.2 (unreleased)
|
# 0.12.2
|
||||||
|
|
||||||
- implement an import cache, significantly improving the performance of certain pathological cases
|
- implement an import cache, significantly improving the performance of certain pathological cases
|
||||||
- slash lists can be compared using `==`
|
- slash lists can be compared using `==`
|
||||||
@ -19,6 +19,7 @@
|
|||||||
- many functions that accept hues now convert other angle units (`rad`, `grad`, `turn`) to `deg`. previously the unit was ignored
|
- many functions that accept hues now convert other angle units (`rad`, `grad`, `turn`) to `deg`. previously the unit was ignored
|
||||||
- improve compressed output of selectors containing newlines and `rgba(..)` colors
|
- improve compressed output of selectors containing newlines and `rgba(..)` colors
|
||||||
- improve resolution of imports containing explicit file extensions, e.g. `@import "foo.scss"`
|
- improve resolution of imports containing explicit file extensions, e.g. `@import "foo.scss"`
|
||||||
|
- fix bug in which whitespace was not emitted between `+` or `-` inside calc for compressed output ([#71](https://github.com/connorskees/grass/pull/71) by @ModProg)
|
||||||
|
|
||||||
# 0.12.1
|
# 0.12.1
|
||||||
|
|
||||||
|
@ -84,10 +84,10 @@ The spec runner does not work on Windows.
|
|||||||
Using a modified version of the spec runner that ignores warnings and error spans (but does include error messages), `grass` achieves the following results:
|
Using a modified version of the spec runner that ignores warnings and error spans (but does include error messages), `grass` achieves the following results:
|
||||||
|
|
||||||
```
|
```
|
||||||
2022-01-17
|
2022-01-31
|
||||||
PASSING: 6271
|
PASSING: 6248
|
||||||
FAILING: 621
|
FAILING: 624
|
||||||
TOTAL: 6905
|
TOTAL: 6892
|
||||||
```
|
```
|
||||||
|
|
||||||
The majority of the failing tests are purely aesthetic, relating to whitespace
|
The majority of the failing tests are purely aesthetic, relating to whitespace
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "grass_compiler"
|
name = "grass_compiler"
|
||||||
version = "0.12.1"
|
version = "0.12.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Internal implementation of the grass compiler"
|
description = "Internal implementation of the grass compiler"
|
||||||
readme = "../../README.md"
|
readme = "../../README.md"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "include_sass"
|
name = "include_sass"
|
||||||
version = "0.12.1"
|
version = "0.12.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Internal implementation of the grass::include! macro"
|
description = "Internal implementation of the grass::include! macro"
|
||||||
readme = "../../README.md"
|
readme = "../../README.md"
|
||||||
@ -16,7 +16,7 @@ proc-macro = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
syn = { version = "1.0.103", default-features = false }
|
syn = { version = "1.0.103", default-features = false }
|
||||||
grass_compiler = { path = "../compiler", version = "0.12.1" }
|
grass_compiler = { path = "../compiler", version = "0.12.2" }
|
||||||
quote = { version = "1.0.23", default-features = false }
|
quote = { version = "1.0.23", default-features = false }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "grass"
|
name = "grass"
|
||||||
version = "0.12.1"
|
version = "0.12.2"
|
||||||
description = "A Sass compiler written purely in Rust"
|
description = "A Sass compiler written purely in Rust"
|
||||||
readme = "../../README.md"
|
readme = "../../README.md"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
@ -24,8 +24,8 @@ path = "src/lib.rs"
|
|||||||
bench = false
|
bench = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
grass_compiler = { path = "../compiler", version = "0.12.1" }
|
grass_compiler = { path = "../compiler", version = "0.12.2" }
|
||||||
include_sass = { path = "../include_sass", version = "0.12.1", optional = true }
|
include_sass = { path = "../include_sass", version = "0.12.2", optional = true }
|
||||||
clap = { version = "2.34.0", optional = true }
|
clap = { version = "2.34.0", optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user