chore: Publish crates

This commit is contained in:
Donny 2022-01-13 18:42:02 +09:00
parent 0843f742c5
commit dc111bbcac
5 changed files with 16 additions and 8 deletions

View File

@ -5,6 +5,14 @@
- **(swc)** Remove `wrong-target` (#3251) ([0843f74](https://github.com/swc-project/swc/commit/0843f742c5db3e0a8dc2fc2767b96fe0fad76bd1))
## [1.2.129] - 2022-01-13
### Bug Fixes
- **(es/compat)** Transform `&&=` operator (#3225) ([2e5150d](https://github.com/swc-project/swc/commit/2e5150d2b714ba86bd228506eb0f008d9f5859e1))

6
Cargo.lock generated
View File

@ -2555,7 +2555,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.113.1"
version = "0.114.0"
dependencies = [
"ahash",
"anyhow",
@ -3303,7 +3303,7 @@ dependencies = [
[[package]]
name = "swc_estree_compat"
version = "0.31.0"
version = "0.32.0"
dependencies = [
"ahash",
"anyhow",
@ -3491,7 +3491,7 @@ dependencies = [
[[package]]
name = "swc_webpack_ast"
version = "0.29.0"
version = "0.30.0"
dependencies = [
"anyhow",
"rayon",

View File

@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc"
repository = "https://github.com/swc-project/swc.git"
version = "0.113.1"
version = "0.114.0"
[lib]
name = "swc"

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_estree_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.31.0"
version = "0.32.0"
[package.metadata.docs.rs]
all-features = true
@ -29,7 +29,7 @@ swc_node_comments = {version = "0.4.0", path = "../swc_node_comments/"}
[dev-dependencies]
pretty_assertions = "0.7.2"
swc = {version = "0.113.0", path = "../swc"}
swc = {version = "0.114.0", path = "../swc"}
swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser"}
swc_ecma_transforms = {version = "0.111.0", path = "../swc_ecma_transforms/"}

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_webpack_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.29.0"
version = "0.30.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -22,7 +22,7 @@ swc_ecma_transforms_base = {version = "0.56.0", path = "../swc_ecma_transforms_b
swc_ecma_utils = {version = "0.63.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
swc_estree_ast = {version = "0.7.0", path = "../swc_estree_ast"}
swc_estree_compat = {version = "0.31.0", path = "../swc_estree_compat"}
swc_estree_compat = {version = "0.32.0", path = "../swc_estree_compat"}
swc_timer = {version = "0.4.0", path = "../swc_timer"}
tracing = "0.1.29"