diff --git a/CHANGELOG.md b/CHANGELOG.md index c7c6c6b77090..802958fc201d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ - **(es)** Preserve license comments by default (#6703) ([58700f2](https://github.com/swc-project/swc/commit/58700f2bec696d0d2b2466ab6b4641f0a7017808)) +### Features + + + +- **(css/prefixer)** Support page break (#6693) ([27a8b7e](https://github.com/swc-project/swc/commit/27a8b7e50b67de076089ca8b05d6e44944182b31)) + ## [1.3.24] - 2022-12-21 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 4b008d531883..024798695420 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3264,7 +3264,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.50.2" +version = "0.50.3" dependencies = [ "anyhow", "binding_macros", @@ -3317,7 +3317,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.146.1" +version = "0.146.2" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3462,7 +3462,7 @@ dependencies = [ [[package]] name = "swc_css_prefixer" -version = "0.143.1" +version = "0.143.2" dependencies = [ "once_cell", "preset_env_base", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index a48fde176ee0..0fa5cb524992 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.50.2" +version = "0.50.3" [package.metadata.docs.rs] features = [ "common_perf", @@ -351,7 +351,7 @@ swc_css_codegen = { optional = true, version = "0.142.1", path swc_css_minifier = { optional = true, version = "0.107.1", path = "../swc_css_minifier" } swc_css_modules = { optional = true, version = "0.19.1", path = "../swc_css_modules" } swc_css_parser = { optional = true, version = "0.141.1", path = "../swc_css_parser" } -swc_css_prefixer = { optional = true, version = "0.143.1", path = "../swc_css_prefixer" } +swc_css_prefixer = { optional = true, version = "0.143.2", path = "../swc_css_prefixer" } swc_css_utils = { optional = true, version = "0.129.1", path = "../swc_css_utils/" } swc_css_visit = { optional = true, version = "0.131.1", path = "../swc_css_visit" } swc_ecma_ast = { optional = true, version = "0.95.9", path = "../swc_ecma_ast" } diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index 794242b8f321..6087fe75f846 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.146.1" +version = "0.146.2" [package.metadata.docs.rs] all-features = true @@ -28,6 +28,6 @@ swc_css_compat = {version = "0.18.1", path = "../swc_css_compat", optional = tru swc_css_minifier = {version = "0.107.1", path = "../swc_css_minifier", optional = true} swc_css_modules = {version = "0.19.1", path = "../swc_css_modules", optional = true} swc_css_parser = {version = "0.141.1", path = "../swc_css_parser"} -swc_css_prefixer = {version = "0.143.1", path = "../swc_css_prefixer", optional = true} +swc_css_prefixer = {version = "0.143.2", path = "../swc_css_prefixer", optional = true} swc_css_utils = {version = "0.129.1", path = "../swc_css_utils/"} swc_css_visit = {version = "0.131.1", path = "../swc_css_visit"} diff --git a/crates/swc_css_prefixer/Cargo.toml b/crates/swc_css_prefixer/Cargo.toml index a3f0f10ce05a..571f00ec4eb2 100644 --- a/crates/swc_css_prefixer/Cargo.toml +++ b/crates/swc_css_prefixer/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"] license = "Apache-2.0" name = "swc_css_prefixer" repository = "https://github.com/swc-project/swc.git" -version = "0.143.1" +version = "0.143.2" [lib] bench = false