diff --git a/CHANGELOG.md b/CHANGELOG.md index dd0352e4776..e6007a0db26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog ## [unreleased] +### Features + + + +- **(css/minifier)** Handle nested `calc()` (#6153) ([d4a733d](https://github.com/swc-project/swc/commit/d4a733d76461995b7549f5470e53df913a30ef0f)) + +## [1.3.9] - 2022-10-17 + ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index f70b7c9869b..860ad8648d9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3168,7 +3168,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.38.22" +version = "0.38.23" dependencies = [ "binding_macros", "once_cell", @@ -3217,7 +3217,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.135.4" +version = "0.135.5" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3310,7 +3310,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.97.3" +version = "0.97.4" dependencies = [ "criterion", "serde", @@ -4045,7 +4045,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.88.16" +version = "0.88.17" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4097,7 +4097,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.85.16" +version = "0.85.17" dependencies = [ "criterion", "once_cell", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 4717af6a338..66cb3e99922 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.22" +version = "0.38.23" [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.3", path = "../swc_css_minifier" } +swc_css_minifier = { optional = true, version = "0.97.4", 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 9bb1aaac697..430abd770e3 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.4" +version = "0.135.5" [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.3", path = "../swc_css_minifier", optional = true} +swc_css_minifier = {version = "0.97.4", 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 d70cd83695d..c9c4f62388f 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.3" +version = "0.97.4" [lib] bench = false diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index 9e0762ab196..5667b339baa 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.16" +version = "0.88.17" [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.16", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.85.17", 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 0df753e1465..7cbb54c39df 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.16" +version = "0.85.17" [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.3", path = "../swc_css_minifier" } +swc_css_minifier = { version = "0.97.4", 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.17", path = "../swc_ecma_codegen" }