chore: Publish crates

This commit is contained in:
SWC Bot 2022-02-12 01:37:50 +09:00
parent fcbc2ff03f
commit 90d080c16b
4 changed files with 8 additions and 5 deletions

View File

@ -26,6 +26,9 @@
- **(css/parser)** Improve error recovery (#3486) ([48e5b90](https://github.com/swc-project/swc/commit/48e5b903e2b82e8fc741d125662bbac825d5b0d0))
- **(css/parser)** Implement more parser logic for nth selectors (#3532) ([fcbc2ff](https://github.com/swc-project/swc/commit/fcbc2ff03f9eebbb5fed95dd082504a6b1a49af9))
- **(es/lints)** Implement `dot-notation` rule (#3481) ([5bb6bd7](https://github.com/swc-project/swc/commit/5bb6bd71b6aa5dbdde62842c34e9ef6742968650))

4
Cargo.lock generated
View File

@ -2752,7 +2752,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.78.0"
version = "0.78.1"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -2814,7 +2814,7 @@ dependencies = [
[[package]]
name = "swc_css_parser"
version = "0.76.0"
version = "0.76.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.78.0"
version = "0.78.1"
[package.metadata.docs.rs]
all-features = true
@ -19,6 +19,6 @@ minifier = ["swc_css_minifier"]
swc_css_ast = {version = "0.72.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.75.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.40.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.76.0", path = "../swc_css_parser"}
swc_css_parser = {version = "0.76.1", path = "../swc_css_parser"}
swc_css_utils = {version = "0.69.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.71.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.76.0"
version = "0.76.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]