From 1ca49a56b3cd8e780d44533b4443c6e357e5b0d6 Mon Sep 17 00:00:00 2001 From: Donny Date: Sat, 8 Jan 2022 23:29:33 +0900 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 12 ++++++------ crates/swc/Cargo.toml | 8 ++++---- crates/swc_ecma_transforms/Cargo.toml | 4 ++-- crates/swc_ecma_transforms_base/Cargo.toml | 2 +- crates/swc_ecmascript/Cargo.toml | 4 ++-- crates/swc_estree_compat/Cargo.toml | 4 ++-- crates/swc_webpack_ast/Cargo.toml | 4 ++-- 8 files changed, 28 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7df39d7bc1..9a5dcf90e9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 8c0e790de35..6a4b4f245df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 1c0824ed178..d87aa397d1d 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -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"} diff --git a/crates/swc_ecma_transforms/Cargo.toml b/crates/swc_ecma_transforms/Cargo.toml index e63d0ad743a..ecd8e0861f8 100644 --- a/crates/swc_ecma_transforms/Cargo.toml +++ b/crates/swc_ecma_transforms/Cargo.toml @@ -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} diff --git a/crates/swc_ecma_transforms_base/Cargo.toml b/crates/swc_ecma_transforms_base/Cargo.toml index 38932931dd1..280f7173ef5 100644 --- a/crates/swc_ecma_transforms_base/Cargo.toml +++ b/crates/swc_ecma_transforms_base/Cargo.toml @@ -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 = [ diff --git a/crates/swc_ecmascript/Cargo.toml b/crates/swc_ecmascript/Cargo.toml index ad939306526..ed12a29f99d 100644 --- a/crates/swc_ecmascript/Cargo.toml +++ b/crates/swc_ecmascript/Cargo.toml @@ -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} diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index 09441370f78..23e2a480350 100644 --- a/crates/swc_estree_compat/Cargo.toml +++ b/crates/swc_estree_compat/Cargo.toml @@ -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/"} diff --git a/crates/swc_webpack_ast/Cargo.toml b/crates/swc_webpack_ast/Cargo.toml index dde686022d6..6f15859f227 100644 --- a/crates/swc_webpack_ast/Cargo.toml +++ b/crates/swc_webpack_ast/Cargo.toml @@ -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"