diff --git a/CHANGELOG.md b/CHANGELOG.md index dfdf80b7b46a..ea776c05a4d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,9 @@ - **(es/minifier)** Don't panic on jsx or ts (#5984) ([0067f71](https://github.com/swc-project/swc/commit/0067f719dd0a072ef43e51698f159506287d7f35)) +- **(es/minifier)** Remove print ([af8236d](https://github.com/swc-project/swc/commit/af8236d689e29980ef1bc8d7d05ed61e37649b28)) + + - **(es/parser)** Allow `as` in destructuring assignment (#5948) ([cdd69d0](https://github.com/swc-project/swc/commit/cdd69d0145d22008448f394e8b39ba98291d87fe)) diff --git a/Cargo.lock b/Cargo.lock index c6939765cdf3..e99dc0d5c2f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2957,7 +2957,7 @@ dependencies = [ [[package]] name = "swc" -version = "0.230.6" +version = "0.230.7" dependencies = [ "ahash", "ansi_term", @@ -3145,7 +3145,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.28.7" +version = "0.28.8" dependencies = [ "binding_macros", "once_cell", @@ -3465,7 +3465,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "0.157.19" +version = "0.157.20" dependencies = [ "ahash", "ansi_term", diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 78f27a10bc5a..141e82897fcb 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.230.6" +version = "0.230.7" [lib] bench = false @@ -75,7 +75,7 @@ swc_ecma_loader = { version = "0.41.3", path = "../swc_ecma_loader", features = "node", "tsc", ] } -swc_ecma_minifier = { version = "0.157.19", path = "../swc_ecma_minifier" } +swc_ecma_minifier = { version = "0.157.20", path = "../swc_ecma_minifier" } swc_ecma_parser = { version = "0.122.4", path = "../swc_ecma_parser" } swc_ecma_preset_env = { version = "0.172.10", path = "../swc_ecma_preset_env" } swc_ecma_transforms = { version = "0.196.10", path = "../swc_ecma_transforms", features = [ diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 074fc6c498c2..f173780d96f7 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_core" repository = "https://github.com/swc-project/swc.git" -version = "0.28.7" +version = "0.28.8" [package.metadata.docs.rs] features = [ "common_perf", @@ -317,7 +317,7 @@ wasmer-wasi = { optional = true, version = "2.3.0", default-features = false } # swc_* dependencies binding_macros = { optional = true, version = "0.18.6", path = "../binding_macros" } -swc = { optional = true, version = "0.230.6", path = "../swc" } +swc = { optional = true, version = "0.230.7", path = "../swc" } swc_atoms = { optional = true, version = "0.4.18", path = "../swc_atoms" } swc_bundler = { optional = true, version = "0.190.19", path = "../swc_bundler" } swc_cached = { optional = true, version = "0.3.14", path = "../swc_cached" } @@ -332,7 +332,7 @@ swc_css_visit = { optional = true, version = "0.113.4", path swc_ecma_ast = { optional = true, version = "0.94.3", path = "../swc_ecma_ast" } swc_ecma_codegen = { optional = true, version = "0.127.5", path = "../swc_ecma_codegen" } swc_ecma_loader = { optional = true, version = "0.41.3", path = "../swc_ecma_loader" } -swc_ecma_minifier = { optional = true, version = "0.157.19", path = "../swc_ecma_minifier" } +swc_ecma_minifier = { optional = true, version = "0.157.20", path = "../swc_ecma_minifier" } swc_ecma_parser = { optional = true, version = "0.122.4", path = "../swc_ecma_parser" } swc_ecma_quote_macros = { optional = true, version = "0.33.4", path = "../swc_ecma_quote_macros" } swc_ecma_transforms_base = { optional = true, version = "0.111.8", path = "../swc_ecma_transforms_base" } diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index e46e3bb76ba1..66f6c53d195e 100644 --- a/crates/swc_ecma_minifier/Cargo.toml +++ b/crates/swc_ecma_minifier/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"] license = "Apache-2.0" name = "swc_ecma_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.157.19" +version = "0.157.20" [package.metadata.docs.rs] all-features = true