diff --git a/CHANGELOG.md b/CHANGELOG.md index d72272cd6fe..c52a2e7572e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,9 @@ - **(css/codegen)** Preserve `raw` of numbers (#7131) ([150c2b6](https://github.com/swc-project/swc/commit/150c2b6fbaef976c6ee97438d1b9b7ffe4b210be)) +- **(css/compat)** Remove usage of `box_syntax` (#7153) ([6f0bf66](https://github.com/swc-project/swc/commit/6f0bf665c29abaa64c60fb43053f96e465d3e041)) + + - **(es/react)** Respect `import_source` in new jsx (#7128) ([5d7acfd](https://github.com/swc-project/swc/commit/5d7acfd9cbbb9780879d0d7a046f716572a477f7)) diff --git a/Cargo.lock b/Cargo.lock index 9dc07e3bf4a..858aa2eb960 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3306,7 +3306,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.72.0" +version = "0.72.1" dependencies = [ "anyhow", "binding_macros", @@ -3359,7 +3359,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.151.0" +version = "0.151.1" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3416,7 +3416,7 @@ dependencies = [ [[package]] name = "swc_css_compat" -version = "0.22.0" +version = "0.22.1" dependencies = [ "bitflags", "once_cell", @@ -3470,7 +3470,7 @@ dependencies = [ [[package]] name = "swc_css_modules" -version = "0.23.0" +version = "0.23.1" dependencies = [ "rustc-hash", "serde", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 44ec5eba497..ef2be27b1ee 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.72.0" +version = "0.72.1" [package.metadata.docs.rs] features = [ "common_perf", @@ -351,7 +351,7 @@ swc_common = { optional = true, version = "0.30.0", path = swc_css_ast = { optional = true, version = "0.136.0", path = "../swc_css_ast" } swc_css_codegen = { optional = true, version = "0.146.0", path = "../swc_css_codegen" } swc_css_minifier = { optional = true, version = "0.111.0", path = "../swc_css_minifier" } -swc_css_modules = { optional = true, version = "0.23.0", path = "../swc_css_modules" } +swc_css_modules = { optional = true, version = "0.23.1", path = "../swc_css_modules" } swc_css_parser = { optional = true, version = "0.145.0", path = "../swc_css_parser" } swc_css_prefixer = { optional = true, version = "0.148.0", path = "../swc_css_prefixer" } swc_css_utils = { optional = true, version = "0.133.0", path = "../swc_css_utils/" } @@ -383,7 +383,7 @@ swc_plugin_proxy = { optional = true, version = "0.31.0", path = swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" } testing = { optional = true, version = "0.32.0", path = "../testing" } # TODO: eventually swc_plugin_runner needs to remove default features -swc_css_compat = { version = "0.22.0", path = "../swc_css_compat", optional = true } +swc_css_compat = { version = "0.22.1", path = "../swc_css_compat", optional = true } swc_plugin_runner = { optional = true, version = "0.93.0", path = "../swc_plugin_runner", default-features = false } [build-dependencies] diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index 6976c410930..2361b5ea28d 100644 --- a/crates/swc_css/Cargo.toml +++ b/crates/swc_css/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css" repository = "https://github.com/swc-project/swc.git" -version = "0.151.0" +version = "0.151.1" [package.metadata.docs.rs] all-features = true @@ -24,9 +24,9 @@ prefixer = ["swc_css_prefixer"] [dependencies] swc_css_ast = { version = "0.136.0", path = "../swc_css_ast" } swc_css_codegen = { version = "0.146.0", path = "../swc_css_codegen" } -swc_css_compat = { version = "0.22.0", path = "../swc_css_compat", optional = true } +swc_css_compat = { version = "0.22.1", path = "../swc_css_compat", optional = true } swc_css_minifier = { version = "0.111.0", path = "../swc_css_minifier", optional = true } -swc_css_modules = { version = "0.23.0", path = "../swc_css_modules", optional = true } +swc_css_modules = { version = "0.23.1", path = "../swc_css_modules", optional = true } swc_css_parser = { version = "0.145.0", path = "../swc_css_parser" } swc_css_prefixer = { version = "0.148.0", path = "../swc_css_prefixer", optional = true } swc_css_utils = { version = "0.133.0", path = "../swc_css_utils/" } diff --git a/crates/swc_css_compat/Cargo.toml b/crates/swc_css_compat/Cargo.toml index 4a4a0089e95..088daf956a6 100644 --- a/crates/swc_css_compat/Cargo.toml +++ b/crates/swc_css_compat/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"] license = "Apache-2.0" name = "swc_css_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.22.0" +version = "0.22.1" [lib] bench = false diff --git a/crates/swc_css_modules/Cargo.toml b/crates/swc_css_modules/Cargo.toml index 16276ef6307..b76e779026e 100644 --- a/crates/swc_css_modules/Cargo.toml +++ b/crates/swc_css_modules/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_modules" repository = "https://github.com/swc-project/swc.git" -version = "0.23.0" +version = "0.23.1" [lib] bench = false @@ -28,5 +28,5 @@ swc_css_visit = { version = "0.135.0", path = "../swc_css_visit" } [dev-dependencies] serde_json = "1" -swc_css_compat = { version = "0.22.0", path = "../swc_css_compat" } +swc_css_compat = { version = "0.22.1", path = "../swc_css_compat" } testing = { version = "0.32.0", path = "../testing" }