diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cd3b48a2ea..6cd20fcacf9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,9 @@ - **(es/loader)** Update `lru` (#3092) ([15cbe4f](https://github.com/swc-project/swc/commit/15cbe4fcaad7b7b2f7bcc9fd413594a18ede25d8)) +- **(es/transforms)** Fix `descturcturing` (#3098) ([df87c2b](https://github.com/swc-project/swc/commit/df87c2b30221f990cdd63125c9ef6036f370145e)) + + - **(es/typescript)** Export destructured properties in typescript namespaces (#3084) ([31dea3d](https://github.com/swc-project/swc/commit/31dea3dd319a19b75554b061cb1374d12718af24)) ### Features diff --git a/Cargo.lock b/Cargo.lock index 4a5df7d578c..d65cf73372e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3014,7 +3014,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms" -version = "0.103.2" +version = "0.103.3" dependencies = [ "pretty_assertions 0.6.1", "sourcemap", @@ -3074,7 +3074,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_compat" -version = "0.59.2" +version = "0.59.3" dependencies = [ "ahash", "arrayvec", @@ -3288,7 +3288,7 @@ dependencies = [ [[package]] name = "swc_ecmascript" -version = "0.99.0" +version = "0.99.1" dependencies = [ "swc_ecma_ast", "swc_ecma_codegen", diff --git a/crates/swc_ecma_transforms/Cargo.toml b/crates/swc_ecma_transforms/Cargo.toml index 8d83a849f2b..de5750393ac 100644 --- a/crates/swc_ecma_transforms/Cargo.toml +++ b/crates/swc_ecma_transforms/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0" name = "swc_ecma_transforms" repository = "https://github.com/swc-project/swc.git" -version = "0.103.2" +version = "0.103.3" [package.metadata.docs.rs] all-features = true @@ -28,7 +28,7 @@ swc_common = {version = "0.15.0", path = "../swc_common"} swc_ecma_ast = {version = "0.60.0", path = "../swc_ecma_ast"} swc_ecma_parser = {version = "0.82.0", path = "../swc_ecma_parser"} swc_ecma_transforms_base = {version = "0.49.1", path = "../swc_ecma_transforms_base"} -swc_ecma_transforms_compat = {version = "0.59.0", path = "../swc_ecma_transforms_compat", optional = true} +swc_ecma_transforms_compat = {version = "0.59.3", path = "../swc_ecma_transforms_compat", optional = true} swc_ecma_transforms_module = {version = "0.65.0", path = "../swc_ecma_transforms_module", optional = true} swc_ecma_transforms_optimization = {version = "0.73.0", path = "../swc_ecma_transforms_optimization", optional = true} swc_ecma_transforms_proposal = {version = "0.65.0", path = "../swc_ecma_transforms_proposal", optional = true} diff --git a/crates/swc_ecma_transforms_compat/Cargo.toml b/crates/swc_ecma_transforms_compat/Cargo.toml index c4afdfa596e..09c47bb6d25 100644 --- a/crates/swc_ecma_transforms_compat/Cargo.toml +++ b/crates/swc_ecma_transforms_compat/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0" name = "swc_ecma_transforms_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.59.2" +version = "0.59.3" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] diff --git a/crates/swc_ecmascript/Cargo.toml b/crates/swc_ecmascript/Cargo.toml index 7408af86131..270d88b4b05 100644 --- a/crates/swc_ecmascript/Cargo.toml +++ b/crates/swc_ecmascript/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0" name = "swc_ecmascript" repository = "https://github.com/swc-project/swc.git" -version = "0.99.0" +version = "0.99.1" [package.metadata.docs.rs] all-features = true @@ -39,7 +39,7 @@ swc_ecma_dep_graph = {version = "0.52.0", path = "../swc_ecma_dep_graph", option swc_ecma_minifier = {version = "0.60.1", path = "../swc_ecma_minifier", optional = true} swc_ecma_parser = {version = "0.82.0", path = "../swc_ecma_parser", optional = true, default-features = false} swc_ecma_preset_env = {version = "0.76.0", path = "../swc_ecma_preset_env", optional = true} -swc_ecma_transforms = {version = "0.103.2", path = "../swc_ecma_transforms", optional = true} +swc_ecma_transforms = {version = "0.103.3", path = "../swc_ecma_transforms", optional = true} swc_ecma_utils = {version = "0.56.0", path = "../swc_ecma_utils", optional = true} swc_ecma_visit = {version = "0.46.0", path = "../swc_ecma_visit", optional = true}