diff --git a/CHANGELOG.md b/CHANGELOG.md index cb29d96b94a..5ea08877c03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,9 @@ +- **(css/minifier)** Handle zero in at-rules (#6155) ([0f38e38](https://github.com/swc-project/swc/commit/0f38e38984fe5508a1dd51275e81c21a0345f063)) + + - **(css/modules)** Add a lifetime to config parameter (#6144) ([1196d60](https://github.com/swc-project/swc/commit/1196d60182e6fcc7b9ba35150f9f5ea4f4ea0881)) diff --git a/Cargo.lock b/Cargo.lock index 39bc7718e26..e428099ebbf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3168,7 +3168,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.38.11" +version = "0.38.12" dependencies = [ "binding_macros", "once_cell", @@ -3217,7 +3217,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.135.3" +version = "0.135.4" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3310,7 +3310,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.97.2" +version = "0.97.3" dependencies = [ "criterion", "serde", @@ -4045,7 +4045,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.88.9" +version = "0.88.10" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4097,7 +4097,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.85.9" +version = "0.85.10" dependencies = [ "criterion", "once_cell", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 86056c87ff3..eb7ead67228 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.38.11" +version = "0.38.12" [package.metadata.docs.rs] features = [ "common_perf", @@ -325,7 +325,7 @@ swc_cached = { optional = true, version = "0.3.15", path = swc_common = { optional = true, version = "0.29.8", path = "../swc_common" } swc_css_ast = { optional = true, version = "0.122.1", path = "../swc_css_ast" } swc_css_codegen = { optional = true, version = "0.132.2", path = "../swc_css_codegen" } -swc_css_minifier = { optional = true, version = "0.97.2", path = "../swc_css_minifier" } +swc_css_minifier = { optional = true, version = "0.97.3", path = "../swc_css_minifier" } swc_css_parser = { optional = true, version = "0.131.2", path = "../swc_css_parser" } swc_css_prefixer = { optional = true, version = "0.133.2", path = "../swc_css_prefixer" } swc_css_utils = { optional = true, version = "0.119.1", path = "../swc_css_utils/" } diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index 7d3c5634438..9bb1aaac697 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.135.3" +version = "0.135.4" [package.metadata.docs.rs] all-features = true @@ -25,7 +25,7 @@ prefixer = ["swc_css_prefixer"] swc_css_ast = {version = "0.122.1", path = "../swc_css_ast"} swc_css_codegen = {version = "0.132.2", path = "../swc_css_codegen"} swc_css_compat = {version = "0.7.2", path = "../swc_css_compat", optional = true} -swc_css_minifier = {version = "0.97.2", path = "../swc_css_minifier", optional = true} +swc_css_minifier = {version = "0.97.3", path = "../swc_css_minifier", optional = true} swc_css_modules = {version = "0.8.3", path = "../swc_css_modules", optional = true} swc_css_parser = {version = "0.131.2", path = "../swc_css_parser"} swc_css_prefixer = {version = "0.133.2", path = "../swc_css_prefixer", optional = true} diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index 84ab176f0c9..d70cd83695d 100644 --- a/crates/swc_css_minifier/Cargo.toml +++ b/crates/swc_css_minifier/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.97.2" +version = "0.97.3" [lib] bench = false diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index a543565e826..8f77afa577a 100644 --- a/crates/swc_html/Cargo.toml +++ b/crates/swc_html/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_html" repository = "https://github.com/swc-project/swc.git" -version = "0.88.9" +version = "0.88.10" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.26.10", path = "../swc_html_ast"} swc_html_codegen = {version = "0.35.12", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.85.9", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.85.10", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.32.11", path = "../swc_html_parser"} swc_html_visit = {version = "0.26.10", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 5f0653f408c..294a0184f1c 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"] license = "Apache-2.0" name = "swc_html_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.85.9" +version = "0.85.10" [lib] bench = false @@ -24,7 +24,7 @@ swc_cached = { version = "0.3.15", path = "../swc_cached" } swc_common = { version = "0.29.8", path = "../swc_common" } swc_css_ast = { version = "0.122.1", path = "../swc_css_ast" } swc_css_codegen = { version = "0.132.2", path = "../swc_css_codegen" } -swc_css_minifier = { version = "0.97.2", path = "../swc_css_minifier" } +swc_css_minifier = { version = "0.97.3", path = "../swc_css_minifier" } swc_css_parser = { version = "0.131.2", path = "../swc_css_parser" } swc_ecma_ast = { version = "0.94.11", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.127.15", path = "../swc_ecma_codegen" }