From 9efe3c848925810b3afc53cf867586a654d4b522 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Fri, 11 Feb 2022 22:32:15 +0900 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 16 ++++++++-------- crates/swc_css/Cargo.toml | 14 +++++++------- crates/swc_css_ast/Cargo.toml | 2 +- crates/swc_css_codegen/Cargo.toml | 8 ++++---- crates/swc_css_minifier/Cargo.toml | 10 +++++----- crates/swc_css_parser/Cargo.toml | 6 +++--- crates/swc_css_utils/Cargo.toml | 6 +++--- crates/swc_css_visit/Cargo.toml | 4 ++-- crates/swc_stylis/Cargo.toml | 12 ++++++------ 10 files changed, 48 insertions(+), 39 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4c073493f2..9bf62393619 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ - **(es/modules)** Hoist named exports (#3479) ([fa0216d](https://github.com/swc-project/swc/commit/fa0216d908118ba008f4be2505590bbb09b7be46)) + +- **(node/helpers)** Fix `isNativeReflectConstruct` (#3530) ([d14d3eb](https://github.com/swc-project/swc/commit/d14d3ebbc8f24a6bed61ce9e534ab06b32c08e34)) + ### Features @@ -74,6 +77,9 @@ - **(css/ast)** Unify `SimpleBlock` and `Block` (#3519) ([57f6a58](https://github.com/swc-project/swc/commit/57f6a581fa730ae6763dc9db712514d1a72c764e)) +- **(css/ast)** Unify `SimpleBlock` and `Block` completely (#3531) ([37c49e8](https://github.com/swc-project/swc/commit/37c49e876c123f4ee98a0499729998b3793037b2)) + + - **(css/parser)** Refactor codes related to simple blocks (#3506) ([4e124c7](https://github.com/swc-project/swc/commit/4e124c7bca85d70b6e4836038ea1aaa25b9ea663)) @@ -91,6 +97,9 @@ - **(css/parser)** Add some tests from `postcss` (#3501) ([8b438ea](https://github.com/swc-project/swc/commit/8b438ea024661f344cb4af1160c3102a5d880ae6)) + +- **(es/minifier)** Add snapshot testing for the analyzer (#3529) ([73e9185](https://github.com/swc-project/swc/commit/73e9185bbafa45f00d9222a9ad8a34229e079130)) + ## [1.2.138] - 2022-02-08 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index c327a5a0fb3..7447345554d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2752,7 +2752,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.77.0" +version = "0.78.0" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -2764,7 +2764,7 @@ dependencies = [ [[package]] name = "swc_css_ast" -version = "0.71.0" +version = "0.72.0" dependencies = [ "is-macro", "serde", @@ -2775,7 +2775,7 @@ dependencies = [ [[package]] name = "swc_css_codegen" -version = "0.74.0" +version = "0.75.0" dependencies = [ "auto_impl", "bitflags", @@ -2801,7 +2801,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.39.0" +version = "0.40.0" dependencies = [ "swc_atoms", "swc_common", @@ -2814,7 +2814,7 @@ dependencies = [ [[package]] name = "swc_css_parser" -version = "0.75.0" +version = "0.76.0" dependencies = [ "bitflags", "lexical", @@ -2829,7 +2829,7 @@ dependencies = [ [[package]] name = "swc_css_utils" -version = "0.68.0" +version = "0.69.0" dependencies = [ "swc_atoms", "swc_common", @@ -2839,7 +2839,7 @@ dependencies = [ [[package]] name = "swc_css_visit" -version = "0.70.0" +version = "0.71.0" dependencies = [ "swc_atoms", "swc_common", @@ -3498,7 +3498,7 @@ version = "0.24.0" [[package]] name = "swc_stylis" -version = "0.73.0" +version = "0.74.0" dependencies = [ "swc_atoms", "swc_common", diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index e8e446d1539..89fbb9ff434 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.77.0" +version = "0.78.0" [package.metadata.docs.rs] all-features = true @@ -16,9 +16,9 @@ rustdoc-args = ["--cfg", "docsrs"] minifier = ["swc_css_minifier"] [dependencies] -swc_css_ast = {version = "0.71.0", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.74.0", path = "../swc_css_codegen"} -swc_css_minifier = {version = "0.39.0", path = "../swc_css_minifier", optional = true} -swc_css_parser = {version = "0.75.0", path = "../swc_css_parser"} -swc_css_utils = {version = "0.68.0", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.70.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.72.0", path = "../swc_css_ast"} +swc_css_codegen = {version = "0.75.0", path = "../swc_css_codegen"} +swc_css_minifier = {version = "0.40.0", path = "../swc_css_minifier", optional = true} +swc_css_parser = {version = "0.76.0", path = "../swc_css_parser"} +swc_css_utils = {version = "0.69.0", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.71.0", path = "../swc_css_visit"} diff --git a/crates/swc_css_ast/Cargo.toml b/crates/swc_css_ast/Cargo.toml index 279c6148a42..695a04b4226 100644 --- a/crates/swc_css_ast/Cargo.toml +++ b/crates/swc_css_ast/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_ast" repository = "https://github.com/swc-project/swc.git" -version = "0.71.0" +version = "0.72.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/swc_css_codegen/Cargo.toml b/crates/swc_css_codegen/Cargo.toml index bdf407d9db5..21b4e7ce189 100644 --- a/crates/swc_css_codegen/Cargo.toml +++ b/crates/swc_css_codegen/Cargo.toml @@ -6,17 +6,17 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_codegen" repository = "https://github.com/swc-project/swc.git" -version = "0.74.0" +version = "0.75.0" [dependencies] auto_impl = "0.5.0" bitflags = "1.3.2" swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_common = {version = "0.17.0", path = "../swc_common"} -swc_css_ast = {version = "0.71.0", path = "../swc_css_ast"} +swc_css_ast = {version = "0.72.0", path = "../swc_css_ast"} swc_css_codegen_macros = {version = "0.2.0", path = "../swc_css_codegen_macros"} [dev-dependencies] -swc_css_parser = {version = "0.75.0", path = "../swc_css_parser"} -swc_css_visit = {version = "0.70.0", path = "../swc_css_visit"} +swc_css_parser = {version = "0.76.0", path = "../swc_css_parser"} +swc_css_visit = {version = "0.71.0", path = "../swc_css_visit"} testing = {version = "0.18.0", path = "../testing"} diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index 5c227b75bef..bad5b70a1f3 100644 --- a/crates/swc_css_minifier/Cargo.toml +++ b/crates/swc_css_minifier/Cargo.toml @@ -6,17 +6,17 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.39.0" +version = "0.40.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] swc_atoms = {version = "0.2.9", path = "../swc_atoms"} swc_common = {version = "0.17.0", path = "../swc_common"} -swc_css_ast = {version = "0.71.0", path = "../swc_css_ast"} -swc_css_visit = {version = "0.70.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.72.0", path = "../swc_css_ast"} +swc_css_visit = {version = "0.71.0", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.74.0", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.75.0", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.75.0", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.76.0", path = "../swc_css_parser"} testing = {version = "0.18.0", path = "../testing"} diff --git a/crates/swc_css_parser/Cargo.toml b/crates/swc_css_parser/Cargo.toml index 3ec8e276c93..ca28a125d9d 100644 --- a/crates/swc_css_parser/Cargo.toml +++ b/crates/swc_css_parser/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_parser" repository = "https://github.com/swc-project/swc.git" -version = "0.75.0" +version = "0.76.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] @@ -17,10 +17,10 @@ bitflags = "1.2.1" lexical = "5.2.2" swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_common = {version = "0.17.0", path = "../swc_common"} -swc_css_ast = {version = "0.71.0", path = "../swc_css_ast"} +swc_css_ast = {version = "0.72.0", path = "../swc_css_ast"} [dev-dependencies] serde = "1.0.127" serde_json = "1.0.66" -swc_css_visit = {version = "0.70.0", path = "../swc_css_visit"} +swc_css_visit = {version = "0.71.0", path = "../swc_css_visit"} testing = {version = "0.18.0", path = "../testing"} diff --git a/crates/swc_css_utils/Cargo.toml b/crates/swc_css_utils/Cargo.toml index b3df5b90d2f..4e0884732ae 100644 --- a/crates/swc_css_utils/Cargo.toml +++ b/crates/swc_css_utils/Cargo.toml @@ -6,11 +6,11 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_utils" repository = "https://github.com/swc-project/swc.git" -version = "0.68.0" +version = "0.69.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_common = {version = "0.17.0", path = "../swc_common"} -swc_css_ast = {version = "0.71.0", path = "../swc_css_ast"} -swc_css_visit = {version = "0.70.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.72.0", path = "../swc_css_ast"} +swc_css_visit = {version = "0.71.0", path = "../swc_css_visit"} diff --git a/crates/swc_css_visit/Cargo.toml b/crates/swc_css_visit/Cargo.toml index 6f879ae69cb..fa294b09313 100644 --- a/crates/swc_css_visit/Cargo.toml +++ b/crates/swc_css_visit/Cargo.toml @@ -6,12 +6,12 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_visit" repository = "https://github.com/swc-project/swc.git" -version = "0.70.0" +version = "0.71.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_common = {version = "0.17.0", path = "../swc_common"} -swc_css_ast = {version = "0.71.0", path = "../swc_css_ast"} +swc_css_ast = {version = "0.72.0", path = "../swc_css_ast"} swc_visit = {version = "0.3.0", path = "../swc_visit"} diff --git a/crates/swc_stylis/Cargo.toml b/crates/swc_stylis/Cargo.toml index 5712bb55cc2..b809d6c8be2 100644 --- a/crates/swc_stylis/Cargo.toml +++ b/crates/swc_stylis/Cargo.toml @@ -6,18 +6,18 @@ edition = "2021" license = "Apache-2.0" name = "swc_stylis" repository = "https://github.com/swc-project/swc.git" -version = "0.73.0" +version = "0.74.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_common = {version = "0.17.0", path = "../swc_common"} -swc_css_ast = {version = "0.71.0", path = "../swc_css_ast"} -swc_css_utils = {version = "0.68.0", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.70.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.72.0", path = "../swc_css_ast"} +swc_css_utils = {version = "0.69.0", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.71.0", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.74.0", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.75.0", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.75.0", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.76.0", path = "../swc_css_parser"} testing = {version = "0.18.0", path = "../testing"}