bump version to 0.13.2
This commit is contained in:
parent
11366ab701
commit
3d02a5f6fb
@ -7,6 +7,12 @@
|
|||||||
|
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
# 0.13.2
|
||||||
|
|
||||||
|
- update rustix dependency to silence security warning
|
||||||
|
- fix @forward statement altering the scope of the forwarded module (#85) by @kketch
|
||||||
|
- bump MSRV to 1.70.0
|
||||||
|
|
||||||
# 0.13.1
|
# 0.13.1
|
||||||
|
|
||||||
- update `clap` dependency to 4.x.x to silence `atty` security warning
|
- update `clap` dependency to 4.x.x to silence `atty` security warning
|
||||||
|
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -154,7 +154,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "grass"
|
name = "grass"
|
||||||
version = "0.13.1"
|
version = "0.13.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
"grass_compiler",
|
"grass_compiler",
|
||||||
@ -165,7 +165,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "grass_compiler"
|
name = "grass_compiler"
|
||||||
version = "0.13.0"
|
version = "0.13.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"codemap",
|
"codemap",
|
||||||
"indexmap",
|
"indexmap",
|
||||||
@ -193,7 +193,7 @@ checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "include_sass"
|
name = "include_sass"
|
||||||
version = "0.13.0"
|
version = "0.13.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"grass_compiler",
|
"grass_compiler",
|
||||||
"quote",
|
"quote",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "grass_compiler"
|
name = "grass_compiler"
|
||||||
version = "0.13.0"
|
version = "0.13.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.13.0"
|
version = "0.13.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"
|
||||||
@ -17,7 +17,7 @@ proc-macro = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
syn = { version = "2", default-features = false }
|
syn = { version = "2", default-features = false }
|
||||||
grass_compiler = { path = "../compiler", version = "=0.13.0" }
|
grass_compiler = { path = "../compiler", version = "=0.13.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.13.1"
|
version = "0.13.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"
|
||||||
@ -31,8 +31,8 @@ features = ["macro"]
|
|||||||
rustdoc-args = ["--cfg", "doc_cfg"]
|
rustdoc-args = ["--cfg", "doc_cfg"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
grass_compiler = { path = "../compiler", version = "=0.13.0", default-features = false }
|
grass_compiler = { path = "../compiler", version = "=0.13.2", default-features = false }
|
||||||
include_sass = { path = "../include_sass", version = "0.13.0", optional = true }
|
include_sass = { path = "../include_sass", version = "0.13.2", optional = true }
|
||||||
clap = { version = "4.3.10", optional = true }
|
clap = { version = "4.3.10", optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user