bump version to 0.12.1
This commit is contained in:
parent
1474c3bafc
commit
1f873e1f0e
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
@ -56,7 +56,7 @@ jobs:
|
|||||||
- uses: actions-rs/cargo@v1
|
- uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: clippy
|
command: clippy
|
||||||
args: -- -D warnings
|
args: --features=macro -- -D warnings
|
||||||
|
|
||||||
boostrap:
|
boostrap:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
-->
|
-->
|
||||||
|
|
||||||
# 0.12.1 (unreleased)
|
# 0.12.1
|
||||||
|
|
||||||
- add `grass::include!` macro to make it easier to include CSS at compile time
|
- add `grass::include!` macro to make it easier to include CSS at compile time
|
||||||
- various optimizations improving the bootstrap benchmark by ~30% and the bulma benchmark by ~15%
|
- various optimizations improving the bootstrap benchmark by ~30% and the bulma benchmark by ~15%
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "grass"
|
name = "grass"
|
||||||
version = "0.12.0"
|
version = "0.12.1"
|
||||||
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_internal = { path = "./grass_internal" }
|
grass_internal = { path = "./grass_internal", version = "0.12.1" }
|
||||||
include_sass = { path = "./include_sass", optional = true }
|
include_sass = { path = "./include_sass", version = "0.12.1", optional = true }
|
||||||
clap = { version = "2.34.0", optional = true }
|
clap = { version = "2.34.0", optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
@ -80,9 +80,9 @@ 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-03
|
2022-01-07
|
||||||
PASSING: 6153
|
PASSING: 6152
|
||||||
FAILING: 752
|
FAILING: 753
|
||||||
TOTAL: 6905
|
TOTAL: 6905
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "grass_internal"
|
name = "grass_internal"
|
||||||
version = "0.12.0"
|
version = "0.12.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
@ -26,10 +26,8 @@ phf = { version = "0.10.1", features = ["macros"] }
|
|||||||
indexmap = "1.9.0"
|
indexmap = "1.9.0"
|
||||||
# todo: do we really need interning for things?
|
# todo: do we really need interning for things?
|
||||||
lasso = "0.6"
|
lasso = "0.6"
|
||||||
# include_sass = { path = "./include_sass", optional = true }
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
# todo: no commandline by default
|
|
||||||
default = ["random"]
|
default = ["random"]
|
||||||
# Option (enabled by default): enable the builtin functions `random([$limit])` and `unique-id()`
|
# Option (enabled by default): enable the builtin functions `random([$limit])` and `unique-id()`
|
||||||
random = ["rand"]
|
random = ["rand"]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "include_sass"
|
name = "include_sass"
|
||||||
version = "0.12.0"
|
version = "0.12.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
@ -9,7 +9,7 @@ proc-macro = true
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
syn = { version = "1.0.103", default-features = false }
|
syn = { version = "1.0.103", default-features = false }
|
||||||
grass_internal = { path = "../grass_internal" }
|
grass_internal = { path = "../grass_internal" }
|
||||||
quote = "1.0.23"
|
quote = { version = "1.0.23", default-features = false }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
nightly = []
|
nightly = []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user