chore: Publish crates

This commit is contained in:
Donny 2022-01-08 23:29:33 +09:00
parent 42f726873e
commit 1ca49a56b3
8 changed files with 28 additions and 19 deletions

View File

@ -20,8 +20,17 @@
- **(es/ast)** Use `ModuleExportName` for `ExportNamespaceSpecifier` (#3195) ([432f877](https://github.com/swc-project/swc/commit/432f87779003e50f17bcaedc35edb8583644c548))
- **(es/transforms)** Add `Assumptions` (#3215) ([42f7268](https://github.com/swc-project/swc/commit/42f726873e6c9e813a750acbf6d818bd4e914e31))
- **(plugin)** Pass serialized ast to a wasm file (#3199) ([92de2c7](https://github.com/swc-project/swc/commit/92de2c78841ee1dc8b372268690637a19c3f4307))
### Security
- **(repo)** Fix crev integration (#3210) ([70c2f3b](https://github.com/swc-project/swc/commit/70c2f3b3a57ec9afc1f28ec1c6377dbbf4e920b6))
## [1.2.127] - 2022-01-06
### Bug Fixes

12
Cargo.lock generated
View File

@ -2555,7 +2555,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.108.0"
version = "0.109.0"
dependencies = [
"ahash",
"anyhow",
@ -2999,7 +2999,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms"
version = "0.107.1"
version = "0.107.2"
dependencies = [
"pretty_assertions 0.7.2",
"sourcemap",
@ -3025,7 +3025,7 @@ dependencies = [
[[package]]
name = "swc_ecma_transforms_base"
version = "0.53.1"
version = "0.53.2"
dependencies = [
"once_cell",
"phf",
@ -3267,7 +3267,7 @@ dependencies = [
[[package]]
name = "swc_ecmascript"
version = "0.104.1"
version = "0.104.2"
dependencies = [
"swc_ecma_ast",
"swc_ecma_codegen",
@ -3303,7 +3303,7 @@ dependencies = [
[[package]]
name = "swc_estree_compat"
version = "0.26.0"
version = "0.27.0"
dependencies = [
"ahash",
"anyhow",
@ -3482,7 +3482,7 @@ dependencies = [
[[package]]
name = "swc_webpack_ast"
version = "0.24.0"
version = "0.25.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.108.0"
version = "0.109.0"
[lib]
name = "swc"
@ -62,7 +62,7 @@ swc_ecma_loader = {version = "0.26.0", path = "../swc_ecma_loader", features = [
swc_ecma_minifier = {version = "0.64.3", path = "../swc_ecma_minifier"}
swc_ecma_parser = {version = "0.85.0", path = "../swc_ecma_parser"}
swc_ecma_preset_env = {version = "0.80.0", path = "../swc_ecma_preset_env"}
swc_ecma_transforms = {version = "0.107.1", path = "../swc_ecma_transforms", features = [
swc_ecma_transforms = {version = "0.107.2", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
@ -70,12 +70,12 @@ swc_ecma_transforms = {version = "0.107.1", path = "../swc_ecma_transforms", fea
"react",
"typescript",
]}
swc_ecma_transforms_base = {version = "0.53.1", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_base = {version = "0.53.2", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_compat = {version = "0.63.1", path = "../swc_ecma_transforms_compat"}
swc_ecma_transforms_optimization = {version = "0.77.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.60.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.49.0", path = "../swc_ecma_visit"}
swc_ecmascript = {version = "0.104.1", path = "../swc_ecmascript"}
swc_ecmascript = {version = "0.104.2", path = "../swc_ecmascript"}
swc_node_comments = {version = "0.3.0", path = "../swc_node_comments"}
swc_plugin_runner = {version = "0.28.0", path = "../swc_plugin_runner", optional = true}
swc_visit = {version = "0.3.0", path = "../swc_visit"}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_transforms"
repository = "https://github.com/swc-project/swc.git"
version = "0.107.1"
version = "0.107.2"
[package.metadata.docs.rs]
all-features = true
@ -27,7 +27,7 @@ swc_atoms = {version = "0.2.0", path = "../swc_atoms"}
swc_common = {version = "0.16.0", path = "../swc_common"}
swc_ecma_ast = {version = "0.63.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.85.0", path = "../swc_ecma_parser"}
swc_ecma_transforms_base = {version = "0.53.1", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_base = {version = "0.53.2", path = "../swc_ecma_transforms_base"}
swc_ecma_transforms_compat = {version = "0.63.1", path = "../swc_ecma_transforms_compat", optional = true}
swc_ecma_transforms_module = {version = "0.69.0", path = "../swc_ecma_transforms_module", optional = true}
swc_ecma_transforms_optimization = {version = "0.77.0", path = "../swc_ecma_transforms_optimization", optional = true}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_transforms_base"
repository = "https://github.com/swc-project/swc.git"
version = "0.53.1"
version = "0.53.2"
[features]
concurrent = [

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecmascript"
repository = "https://github.com/swc-project/swc.git"
version = "0.104.1"
version = "0.104.2"
[package.metadata.docs.rs]
all-features = true
@ -39,7 +39,7 @@ swc_ecma_dep_graph = {version = "0.56.0", path = "../swc_ecma_dep_graph", option
swc_ecma_minifier = {version = "0.64.0", path = "../swc_ecma_minifier", optional = true}
swc_ecma_parser = {version = "0.85.0", path = "../swc_ecma_parser", optional = true, default-features = false}
swc_ecma_preset_env = {version = "0.80.0", path = "../swc_ecma_preset_env", optional = true}
swc_ecma_transforms = {version = "0.107.1", path = "../swc_ecma_transforms", optional = true}
swc_ecma_transforms = {version = "0.107.2", path = "../swc_ecma_transforms", optional = true}
swc_ecma_utils = {version = "0.60.0", path = "../swc_ecma_utils", optional = true}
swc_ecma_visit = {version = "0.49.0", path = "../swc_ecma_visit", optional = true}

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.26.0"
version = "0.27.0"
[package.metadata.docs.rs]
all-features = true
@ -29,7 +29,7 @@ swc_node_comments = {version = "0.3.0", path = "../swc_node_comments/"}
[dev-dependencies]
pretty_assertions = "0.7.2"
swc = {version = "0.108.0", path = "../swc"}
swc = {version = "0.109.0", path = "../swc"}
swc_ecma_ast = {version = "0.63.0", path = "../swc_ecma_ast"}
swc_ecma_parser = {version = "0.85.0", path = "../swc_ecma_parser"}
swc_ecma_transforms = {version = "0.107.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.24.0"
version = "0.25.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.53.0", path = "../swc_ecma_transforms_b
swc_ecma_utils = {version = "0.60.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.49.0", path = "../swc_ecma_visit"}
swc_estree_ast = {version = "0.6.0", path = "../swc_estree_ast"}
swc_estree_compat = {version = "0.26.0", path = "../swc_estree_compat"}
swc_estree_compat = {version = "0.27.0", path = "../swc_estree_compat"}
swc_timer = {version = "0.3.0", path = "../swc_timer"}
tracing = "0.1.29"