From f8c62b6cace6045c6783773696b194f9e304b232 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Donny/=EA=B0=95=EB=8F=99=EC=9C=A4?= Date: Tue, 8 Feb 2022 20:29:10 +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 a2bb5677908..f7811d0570a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,11 +11,20 @@ +- **(css)** Add support for `@property` at-rule (#3470) ([fd5668c](https://github.com/swc-project/swc/commit/fd5668c32fa002698e387df6bc6a927c0d562e06)) + + - **(css/ast)** Add types for `@counter-style` at-rule (#3469) ([e6f4fbf](https://github.com/swc-project/swc/commit/e6f4fbf056767344776afbb6bd3b2f5dfe83dcf3)) - **(plugin)** Support global `HANDLER` in the plugin context (#3478) ([d473a65](https://github.com/swc-project/swc/commit/d473a6597653e59fc485ffb9cb116d23b4b55e70)) +### Miscellaneous Tasks + + + +- **(es)** Fix clippy warnings (#3482) ([8bf5cf4](https://github.com/swc-project/swc/commit/8bf5cf4d030ec5ab615924b938c8c027c600e3e1)) + ## [1.2.137] - 2022-02-07 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 9c1dce38501..83eefb16b94 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2752,7 +2752,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.71.0" +version = "0.72.0" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -2764,7 +2764,7 @@ dependencies = [ [[package]] name = "swc_css_ast" -version = "0.66.0" +version = "0.67.0" dependencies = [ "is-macro", "serde", @@ -2775,7 +2775,7 @@ dependencies = [ [[package]] name = "swc_css_codegen" -version = "0.69.0" +version = "0.70.0" dependencies = [ "auto_impl", "bitflags", @@ -2801,7 +2801,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.33.0" +version = "0.34.0" dependencies = [ "swc_atoms", "swc_common", @@ -2814,7 +2814,7 @@ dependencies = [ [[package]] name = "swc_css_parser" -version = "0.70.0" +version = "0.71.0" dependencies = [ "bitflags", "lexical", @@ -2829,7 +2829,7 @@ dependencies = [ [[package]] name = "swc_css_utils" -version = "0.63.0" +version = "0.64.0" dependencies = [ "swc_atoms", "swc_common", @@ -2839,7 +2839,7 @@ dependencies = [ [[package]] name = "swc_css_visit" -version = "0.65.0" +version = "0.66.0" dependencies = [ "swc_atoms", "swc_common", @@ -3495,7 +3495,7 @@ version = "0.24.0" [[package]] name = "swc_stylis" -version = "0.68.0" +version = "0.69.0" dependencies = [ "swc_atoms", "swc_common", diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index 15ef4e7a775..7b0261de6af 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.71.0" +version = "0.72.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.66.0", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.69.0", path = "../swc_css_codegen"} -swc_css_minifier = {version = "0.33.0", path = "../swc_css_minifier", optional = true} -swc_css_parser = {version = "0.70.0", path = "../swc_css_parser"} -swc_css_utils = {version = "0.63.0", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.65.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.67.0", path = "../swc_css_ast"} +swc_css_codegen = {version = "0.70.0", path = "../swc_css_codegen"} +swc_css_minifier = {version = "0.34.0", path = "../swc_css_minifier", optional = true} +swc_css_parser = {version = "0.71.0", path = "../swc_css_parser"} +swc_css_utils = {version = "0.64.0", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.66.0", path = "../swc_css_visit"} diff --git a/crates/swc_css_ast/Cargo.toml b/crates/swc_css_ast/Cargo.toml index 43cfd14b4f3..c2cbe842a3f 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.66.0" +version = "0.67.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 102967b2a2f..dd3ac43b450 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.69.0" +version = "0.70.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.66.0", path = "../swc_css_ast"} +swc_css_ast = {version = "0.67.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.70.0", path = "../swc_css_parser"} -swc_css_visit = {version = "0.65.0", path = "../swc_css_visit"} +swc_css_parser = {version = "0.71.0", path = "../swc_css_parser"} +swc_css_visit = {version = "0.66.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 d0193e4e226..d3c4750117b 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.33.0" +version = "0.34.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.66.0", path = "../swc_css_ast"} -swc_css_visit = {version = "0.65.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.67.0", path = "../swc_css_ast"} +swc_css_visit = {version = "0.66.0", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.69.0", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.70.0", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.70.0", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.71.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 4bbb9484ce4..30d182e7f46 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.70.0" +version = "0.71.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.66.0", path = "../swc_css_ast"} +swc_css_ast = {version = "0.67.0", path = "../swc_css_ast"} [dev-dependencies] serde = "1.0.127" serde_json = "1.0.66" -swc_css_visit = {version = "0.65.0", path = "../swc_css_visit"} +swc_css_visit = {version = "0.66.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 332d9c3f4c0..dbf9cfd735b 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.63.0" +version = "0.64.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.66.0", path = "../swc_css_ast"} -swc_css_visit = {version = "0.65.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.67.0", path = "../swc_css_ast"} +swc_css_visit = {version = "0.66.0", path = "../swc_css_visit"} diff --git a/crates/swc_css_visit/Cargo.toml b/crates/swc_css_visit/Cargo.toml index 5ad82695731..04ca6de981c 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.65.0" +version = "0.66.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.66.0", path = "../swc_css_ast"} +swc_css_ast = {version = "0.67.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 a03b6c15760..b206f25e19b 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.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.66.0", path = "../swc_css_ast"} -swc_css_utils = {version = "0.63.0", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.65.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.67.0", path = "../swc_css_ast"} +swc_css_utils = {version = "0.64.0", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.66.0", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.69.0", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.70.0", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.70.0", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.71.0", path = "../swc_css_parser"} testing = {version = "0.18.0", path = "../testing"}