chore: Publish crates

This commit is contained in:
SWC Bot 2022-02-27 14:54:36 +00:00
parent 815a489dcf
commit e475a83ebc
10 changed files with 45 additions and 39 deletions

View File

@ -13,6 +13,12 @@
- **(es/quote)** Implement quasi quoter partially (#3155) ([fe0ddcc](https://github.com/swc-project/swc/commit/fe0ddcc54b0f8343a3a3d227bde8b38fa47ebd80))
### Refactor
- **(css/ast)** Simplify AST types (#3753) ([815a489](https://github.com/swc-project/swc/commit/815a489dcfb72df928fc03f216dbe4a21b0e0716))
## [1.2.146] - 2022-02-27
### Bug Fixes

16
Cargo.lock generated
View File

@ -2819,7 +2819,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.93.0"
version = "0.94.0"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -2831,7 +2831,7 @@ dependencies = [
[[package]]
name = "swc_css_ast"
version = "0.85.0"
version = "0.86.0"
dependencies = [
"is-macro",
"serde",
@ -2842,7 +2842,7 @@ dependencies = [
[[package]]
name = "swc_css_codegen"
version = "0.90.0"
version = "0.91.0"
dependencies = [
"auto_impl",
"bitflags",
@ -2868,7 +2868,7 @@ dependencies = [
[[package]]
name = "swc_css_minifier"
version = "0.55.0"
version = "0.56.0"
dependencies = [
"swc_atoms",
"swc_common",
@ -2881,7 +2881,7 @@ dependencies = [
[[package]]
name = "swc_css_parser"
version = "0.91.0"
version = "0.92.0"
dependencies = [
"bitflags",
"lexical",
@ -2896,7 +2896,7 @@ dependencies = [
[[package]]
name = "swc_css_utils"
version = "0.82.0"
version = "0.83.0"
dependencies = [
"swc_atoms",
"swc_common",
@ -2906,7 +2906,7 @@ dependencies = [
[[package]]
name = "swc_css_visit"
version = "0.84.0"
version = "0.85.0"
dependencies = [
"swc_atoms",
"swc_common",
@ -3591,7 +3591,7 @@ version = "0.24.1"
[[package]]
name = "swc_stylis"
version = "0.89.0"
version = "0.90.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.93.0"
version = "0.94.0"
[package.metadata.docs.rs]
all-features = true
@ -16,9 +16,9 @@ rustdoc-args = ["--cfg", "docsrs"]
minifier = ["swc_css_minifier"]
[dependencies]
swc_css_ast = {version = "0.85.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.90.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.55.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.91.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.82.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.84.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.86.0", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.91.0", path = "../swc_css_codegen"}
swc_css_minifier = {version = "0.56.0", path = "../swc_css_minifier", optional = true}
swc_css_parser = {version = "0.92.0", path = "../swc_css_parser"}
swc_css_utils = {version = "0.83.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.85.0", path = "../swc_css_visit"}

View File

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

View File

@ -6,17 +6,17 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_codegen"
repository = "https://github.com/swc-project/swc.git"
version = "0.90.0"
version = "0.91.0"
[dependencies]
auto_impl = "0.5.0"
bitflags = "1.3.2"
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.85.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.86.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.91.0", path = "../swc_css_parser"}
swc_css_visit = {version = "0.84.0", path = "../swc_css_visit"}
swc_css_parser = {version = "0.92.0", path = "../swc_css_parser"}
swc_css_visit = {version = "0.85.0", path = "../swc_css_visit"}
testing = {version = "0.18.0", path = "../testing"}

View File

@ -6,17 +6,17 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.55.0"
version = "0.56.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.85.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.84.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.86.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.85.0", path = "../swc_css_visit"}
[dev-dependencies]
swc_css_codegen = {version = "0.90.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.91.0", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.91.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.92.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.91.0"
version = "0.92.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
@ -17,10 +17,10 @@ bitflags = "1.2.1"
lexical = "5.2.2"
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.85.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.86.0", path = "../swc_css_ast"}
[dev-dependencies]
serde = "1.0.127"
serde_json = "1.0.66"
swc_css_visit = {version = "0.84.0", path = "../swc_css_visit"}
swc_css_visit = {version = "0.85.0", path = "../swc_css_visit"}
testing = {version = "0.18.0", path = "../testing"}

View File

@ -6,11 +6,11 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_utils"
repository = "https://github.com/swc-project/swc.git"
version = "0.82.0"
version = "0.83.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.85.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.84.0", path = "../swc_css_visit"}
swc_css_ast = {version = "0.86.0", path = "../swc_css_ast"}
swc_css_visit = {version = "0.85.0", path = "../swc_css_visit"}

View File

@ -6,12 +6,12 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_visit"
repository = "https://github.com/swc-project/swc.git"
version = "0.84.0"
version = "0.85.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = {version = "0.17.0", path = "../swc_common"}
swc_css_ast = {version = "0.85.0", path = "../swc_css_ast"}
swc_css_ast = {version = "0.86.0", path = "../swc_css_ast"}
swc_visit = {version = "0.3.0", path = "../swc_visit"}

View File

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