Skip to content

Commit

Permalink
bump version to 0.13.3
Browse files Browse the repository at this point in the history
  • Loading branch information
connorskees committed May 19, 2024
1 parent 455de80 commit 05e3c94
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 10 deletions.
19 changes: 16 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grass_compiler"
version = "0.13.2"
version = "0.13.3"
edition = "2021"
description = "Internal implementation of the grass compiler"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions crates/include_sass/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "include_sass"
version = "0.13.2"
version = "0.13.3"
edition = "2021"
description = "Internal implementation of the grass::include! macro"
readme = "../../README.md"
Expand All @@ -17,7 +17,7 @@ proc-macro = true

[dependencies]
syn = { version = "2", default-features = false }
grass_compiler = { path = "../compiler", version = "=0.13.2" }
grass_compiler = { path = "../compiler", version = "=0.13.3" }
quote = { version = "1.0.23", default-features = false }

[features]
Expand Down
15 changes: 11 additions & 4 deletions crates/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grass"
version = "0.13.2"
version = "0.13.3"
description = "A Sass compiler written purely in Rust"
readme = "../../README.md"
license = "MIT"
Expand All @@ -9,7 +9,14 @@ keywords = ["scss", "sass", "css", "web"]
repository = "https://github.com/connorskees/grass"
authors = ["Connor Skees <[email protected]>"]
edition = "2021"
include = ["src", "Cargo.toml", "README.md", "CHANGELOG.md", "Cargo.lock", "LICENSE"]
include = [
"src",
"Cargo.toml",
"README.md",
"CHANGELOG.md",
"Cargo.lock",
"LICENSE",
]
default-run = "grass"
rust-version = "1.70"

Expand All @@ -34,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.2", default-features = false }
include_sass = { path = "../include_sass", version = "0.13.2", optional = true }
grass_compiler = { path = "../compiler", version = "=0.13.3", default-features = false }
include_sass = { path = "../include_sass", version = "0.13.3", optional = true }
clap = { version = "4.3.10", optional = true }

[features]
Expand Down

0 comments on commit 05e3c94

Please sign in to comment.