chore: Publish crates

This commit is contained in:
Donny 2022-01-28 01:13:16 +09:00
parent c73835bfeb
commit 2cdd4300cf
5 changed files with 15 additions and 6 deletions

View File

@ -7,6 +7,15 @@
- **(css/codegen)** Implement `minify: true` (#3369) ([0537ef1](https://github.com/swc-project/swc/commit/0537ef1a1170da5c693a36cd20fd2b089a8a3618))
- **(css/parser)** Improve selector parser (#3386) ([c73835b](https://github.com/swc-project/swc/commit/c73835bfebe56518e107a3666fe95ca649d33a24))
### Miscellaneous Tasks
- **(repo)** Add `clippy` to git push hook (#3383) ([78e83a3](https://github.com/swc-project/swc/commit/78e83a386b62abaf9b38b58b5dd942de2333e3a6))
### Performance

4
Cargo.lock generated
View File

@ -2792,7 +2792,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.56.1"
version = "0.56.2"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -2854,7 +2854,7 @@ dependencies = [
[[package]]
name = "swc_css_parser"
version = "0.56.0"
version = "0.56.1"
dependencies = [
"bitflags",
"lexical",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css"
repository = "https://github.com/swc-project/swc.git"
version = "0.56.1"
version = "0.56.2"
[package.metadata.docs.rs]
all-features = true
@ -19,6 +19,6 @@ minifier = ["swc_css_minifier"]
swc_css_ast = {version = "0.52.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.54.1", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.18.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.56.0", path = "../swc_css_parser"}
swc_css_parser = {version = "0.56.1", path = "../swc_css_parser"}
swc_css_utils = {version = "0.49.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.51.0", path = "../swc_css_visit"}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_parser"
repository = "https://github.com/swc-project/swc.git"
version = "0.56.0"
version = "0.56.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]

View File

@ -13,5 +13,5 @@ cargo metadata --offline --format-version 1 > /dev/null
git add -A
git commit -m 'chore: Publish crates'
git push
git push --no-verify
cargo mono publish --no-verify