chore: Publish crates

This commit is contained in:
SWC Bot 2022-03-02 05:36:57 +00:00
parent f969f8c5f5
commit 798f6c5a6d
8 changed files with 29 additions and 21 deletions

View File

@ -1,4 +1,12 @@
# Changelog
## [unreleased]
### Features
- **(css/parser)** Improve error recovery (#3810) ([f969f8c](https://github.com/swc-project/swc/commit/f969f8c5f54e3028576a74ccfcaae72b1c19eaf9))
## [1.2.147] - 2022-03-02
### Bug Fixes

12
Cargo.lock generated
View File

@ -2849,7 +2849,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.95.0"
version = "0.96.0"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -2872,7 +2872,7 @@ dependencies = [
[[package]]
name = "swc_css_codegen"
version = "0.92.0"
version = "0.93.0"
dependencies = [
"auto_impl",
"bitflags",
@ -2898,7 +2898,7 @@ dependencies = [
[[package]]
name = "swc_css_lints"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"auto_impl",
"parking_lot 0.12.0",
@ -2915,7 +2915,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.57.0"
version = "0.58.0"
dependencies = [
"swc_atoms",
"swc_common",
@ -2928,7 +2928,7 @@ dependencies = [
[[package]]
name = "swc_css_parser"
version = "0.93.0"
version = "0.94.0"
dependencies = [
"bitflags",
"lexical",
@ -3641,7 +3641,7 @@ version = "0.24.1"
[[package]]
name = "swc_stylis"
version = "0.91.0"
version = "0.92.0"
dependencies = [
"swc_atoms",
"swc_common",

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.95.0"
version = "0.96.0"
[package.metadata.docs.rs]
all-features = true
@ -17,8 +17,8 @@ minifier = ["swc_css_minifier"]
[dependencies]
swc_css_ast = {version = "0.87.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.92.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.57.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.93.0", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.93.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.58.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.94.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.84.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.86.0", path = "../swc_css_visit"}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_codegen"
repository = "https://github.com/swc-project/swc.git"
version = "0.92.0"
version = "0.93.0"
[dependencies]
auto_impl = "0.5.0"
@ -17,6 +17,6 @@ swc_css_ast = {version = "0.87.0", path = "../swc_css_ast"}
swc_css_codegen_macros = {version = "0.2.0", path = "../swc_css_codegen_macros"}
[dev-dependencies]
swc_css_parser = {version = "0.93.0", path = "../swc_css_parser"}
swc_css_parser = {version = "0.94.0", path = "../swc_css_parser"}
swc_css_visit = {version = "0.86.0", path = "../swc_css_visit"}
testing = {version = "0.18.0", path = "../testing"}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_lints"
repository = "https://github.com/swc-project/swc.git"
version = "0.3.0"
version = "0.4.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -22,5 +22,5 @@ swc_css_visit = {version = "0.86.0", path = "../swc_css_visit"}
[dev-dependencies]
serde_json = "1.0.79"
swc_css_parser = {version = "0.93.0", path = "../swc_css_parser"}
swc_css_parser = {version = "0.94.0", path = "../swc_css_parser"}
testing = {version = "0.18.0", path = "../testing"}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.57.0"
version = "0.58.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -17,6 +17,6 @@ swc_css_ast = {version = "0.87.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.86.0", path = "../swc_css_visit"}
[dev-dependencies]
swc_css_codegen = {version = "0.92.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.93.0", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.93.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.94.0", path = "../swc_css_parser"}
testing = {version = "0.18.0", path = "../testing"}

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.93.0"
version = "0.94.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_stylis"
repository = "https://github.com/swc-project/swc.git"
version = "0.91.0"
version = "0.92.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -18,6 +18,6 @@ swc_css_utils = {version = "0.84.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.86.0", path = "../swc_css_visit"}
[dev-dependencies]
swc_css_codegen = {version = "0.92.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.93.0", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.93.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.94.0", path = "../swc_css_parser"}
testing = {version = "0.18.0", path = "../testing"}