bump version to 0.12.1

This commit is contained in:
connorskees 2023-01-07 17:47:39 +00:00
parent 1474c3bafc
commit 1f873e1f0e
6 changed files with 11 additions and 13 deletions

View File

@ -56,7 +56,7 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
args: --features=macro -- -D warnings
boostrap:
runs-on: ubuntu-latest

View File

@ -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
- various optimizations improving the bootstrap benchmark by ~30% and the bulma benchmark by ~15%

View File

@ -1,6 +1,6 @@
[package]
name = "grass"
version = "0.12.0"
version = "0.12.1"
description = "A Sass compiler written purely in Rust"
readme = "README.md"
license = "MIT"
@ -24,8 +24,8 @@ path = "src/lib.rs"
bench = false
[dependencies]
grass_internal = { path = "./grass_internal" }
include_sass = { path = "./include_sass", optional = true }
grass_internal = { path = "./grass_internal", version = "0.12.1" }
include_sass = { path = "./include_sass", version = "0.12.1", optional = true }
clap = { version = "2.34.0", optional = true }
[features]

View File

@ -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:
```
2022-01-03
PASSING: 6153
FAILING: 752
2022-01-07
PASSING: 6152
FAILING: 753
TOTAL: 6905
```

View File

@ -1,6 +1,6 @@
[package]
name = "grass_internal"
version = "0.12.0"
version = "0.12.1"
edition = "2021"
# 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"
# todo: do we really need interning for things?
lasso = "0.6"
# include_sass = { path = "./include_sass", optional = true }
[features]
# todo: no commandline by default
default = ["random"]
# Option (enabled by default): enable the builtin functions `random([$limit])` and `unique-id()`
random = ["rand"]

View File

@ -1,6 +1,6 @@
[package]
name = "include_sass"
version = "0.12.0"
version = "0.12.1"
edition = "2021"
[lib]
@ -9,7 +9,7 @@ proc-macro = true
[dependencies]
syn = { version = "1.0.103", default-features = false }
grass_internal = { path = "../grass_internal" }
quote = "1.0.23"
quote = { version = "1.0.23", default-features = false }
[features]
nightly = []