bump version to 0.13.4
This commit is contained in:
parent
b06c0a6bc9
commit
e0bb9e2eab
@ -7,7 +7,7 @@
|
||||
|
||||
-->
|
||||
|
||||
# TBD
|
||||
# 0.13.4
|
||||
|
||||
- support `...$keys` argument to `map-has-key(..)`/`map.has-key(..)`
|
||||
- parse [aliased colors](https://developer.mozilla.org/en-US/docs/Web/CSS/named-color#description) (e.g. `cyan` for `aqua`) as colors rather than identifiers
|
||||
|
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -156,7 +156,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "grass"
|
||||
version = "0.13.3"
|
||||
version = "0.13.4"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"getrandom",
|
||||
@ -169,7 +169,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "grass_compiler"
|
||||
version = "0.13.3"
|
||||
version = "0.13.4"
|
||||
dependencies = [
|
||||
"codemap",
|
||||
"indexmap",
|
||||
@ -197,7 +197,7 @@ checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
|
||||
|
||||
[[package]]
|
||||
name = "include_sass"
|
||||
version = "0.13.3"
|
||||
version = "0.13.4"
|
||||
dependencies = [
|
||||
"grass_compiler",
|
||||
"quote",
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "grass_compiler"
|
||||
version = "0.13.3"
|
||||
version = "0.13.4"
|
||||
edition = "2021"
|
||||
description = "Internal implementation of the grass compiler"
|
||||
readme = "README.md"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "include_sass"
|
||||
version = "0.13.3"
|
||||
version = "0.13.4"
|
||||
edition = "2021"
|
||||
description = "Internal implementation of the grass::include! macro"
|
||||
readme = "../../README.md"
|
||||
@ -17,7 +17,7 @@ proc-macro = true
|
||||
|
||||
[dependencies]
|
||||
syn = { version = "2", default-features = false }
|
||||
grass_compiler = { path = "../compiler", version = "=0.13.3" }
|
||||
grass_compiler = { path = "../compiler", version = "=0.13.4" }
|
||||
quote = { version = "1.0.23", default-features = false }
|
||||
|
||||
[features]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "grass"
|
||||
version = "0.13.3"
|
||||
version = "0.13.4"
|
||||
description = "A Sass compiler written purely in Rust"
|
||||
readme = "../../README.md"
|
||||
license = "MIT"
|
||||
@ -41,8 +41,8 @@ rustdoc-args = ["--cfg", "doc_cfg"]
|
||||
[dependencies]
|
||||
wasm-bindgen = { version = "0.2", optional = true }
|
||||
getrandom = { version = "0.2", features = ["js"] }
|
||||
grass_compiler = { path = "../compiler", version = "=0.13.3", default-features = false }
|
||||
include_sass = { path = "../include_sass", version = "0.13.3", optional = true }
|
||||
grass_compiler = { path = "../compiler", version = "=0.13.4", default-features = false }
|
||||
include_sass = { path = "../include_sass", version = "0.13.4", optional = true }
|
||||
clap = { version = "4.3.10", optional = true }
|
||||
|
||||
[features]
|
||||
|
Loading…
x
Reference in New Issue
Block a user