diff --git a/CHANGELOG.md b/CHANGELOG.md index edbf9d87d07..20f1a6c8c23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,9 @@ - **(node-swc/types)** Fix experimental config options (#3603) ([2b5eba1](https://github.com/swc-project/swc/commit/2b5eba16c3a5e3621b6e66d92db1e0d6c400c9f2)) +- **(plugin)** Fix caching of wasm modulee (#3616) ([05aecf5](https://github.com/swc-project/swc/commit/05aecf507e9bf46002e0629b159245ff9c0f7b2c)) + + - **(swc_common)** Fix names of proxied functions (#3608) ([e863f9d](https://github.com/swc-project/swc/commit/e863f9dd0486a53c835e9cd08cfa7ab7c31dd087)) ### Documentation diff --git a/Cargo.lock b/Cargo.lock index 819dcd64e9f..7a600b91dc7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2633,7 +2633,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" [[package]] name = "swc" -version = "0.127.5" +version = "0.128.0" dependencies = [ "ahash", "anyhow", @@ -2731,7 +2731,7 @@ dependencies = [ [[package]] name = "swc_cli" -version = "0.1.4" +version = "0.2.0" dependencies = [ "anyhow", "clap", @@ -3379,7 +3379,7 @@ dependencies = [ [[package]] name = "swc_estree_compat" -version = "0.45.0" +version = "0.46.0" dependencies = [ "ahash", "anyhow", @@ -3501,7 +3501,7 @@ dependencies = [ [[package]] name = "swc_plugin_runner" -version = "0.34.0" +version = "0.35.0" dependencies = [ "anyhow", "libloading", @@ -3569,7 +3569,7 @@ dependencies = [ [[package]] name = "swc_webpack_ast" -version = "0.43.0" +version = "0.44.0" dependencies = [ "anyhow", "rayon", diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 6f3da15f1c4..2d52bf1fd35 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.127.5" +version = "0.128.0" [lib] name = "swc" @@ -70,7 +70,7 @@ swc_ecma_utils = {version = "0.65.3", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit"} swc_ecmascript = {version = "0.114.2", path = "../swc_ecmascript"} swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"} -swc_plugin_runner = {version = "0.34.0", path = "../swc_plugin_runner", optional = true} +swc_plugin_runner = {version = "0.35.0", path = "../swc_plugin_runner", optional = true} swc_visit = {version = "0.3.0", path = "../swc_visit"} tracing = "0.1.28" diff --git a/crates/swc_cli/Cargo.toml b/crates/swc_cli/Cargo.toml index f5714be1724..c6e2a06365c 100644 --- a/crates/swc_cli/Cargo.toml +++ b/crates/swc_cli/Cargo.toml @@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_cli" repository = "https://github.com/swc-project/swc.git" -version = "0.1.4" +version = "0.2.0" [[bin]] name = "swc" @@ -17,7 +17,7 @@ anyhow = "1.0.53" clap = { version = "3.1.0", features = ["derive", "wrap_help"] } walkdir = "2" rayon = "1" -swc = { version = "0.127.1", path = "../swc" } +swc = { version = "0.128.0", path = "../swc" } swc_common = { version = "0.17.5", path = "../swc_common" } relative-path = "1.6.1" serde = { version = "1", features = ["derive"] } diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index 31fbbf521ed..2654c0e0182 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.45.0" +version = "0.46.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.127.0", path = "../swc"} +swc = {version = "0.128.0", path = "../swc"} swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"} swc_ecma_parser = {version = "0.88.0", path = "../swc_ecma_parser"} swc_ecma_transforms = {version = "0.117.0", path = "../swc_ecma_transforms/"} diff --git a/crates/swc_plugin_runner/Cargo.toml b/crates/swc_plugin_runner/Cargo.toml index 82c2648553b..303b0dbb362 100644 --- a/crates/swc_plugin_runner/Cargo.toml +++ b/crates/swc_plugin_runner/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_plugin_runner" repository = "https://github.com/swc-project/swc.git" -version = "0.34.0" +version = "0.35.0" [dependencies] anyhow = "1.0.42" diff --git a/crates/swc_webpack_ast/Cargo.toml b/crates/swc_webpack_ast/Cargo.toml index 6142771cce9..55ea6c66325 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.43.0" +version = "0.44.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.58.0", path = "../swc_ecma_transforms_b swc_ecma_utils = {version = "0.65.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.45.0", path = "../swc_estree_compat"} +swc_estree_compat = {version = "0.46.0", path = "../swc_estree_compat"} swc_timer = {version = "0.4.0", path = "../swc_timer"} tracing = "0.1.29"