From 6ec667463f57570ef1ad4b0e07c8463795694043 Mon Sep 17 00:00:00 2001 From: Donny Date: Sun, 30 Jan 2022 22:49:41 +0900 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ 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, 42 insertions(+), 39 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b04f7050ac1..4a70c769905 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ +- **(css)** Allow empty `@media` at-rule (#3404) ([75a14f9](https://github.com/swc-project/swc/commit/75a14f98b7370226115ee24eec6eb8c802bd4837)) + + - **(css/parser)** Fix parser logic related to case insensivity (#3382) ([3ded88b](https://github.com/swc-project/swc/commit/3ded88bffca4abd0bb77a52b0dfb32d8c8520581)) diff --git a/Cargo.lock b/Cargo.lock index c6fb2bb8850..19a563b02e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2751,7 +2751,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.59.0" +version = "0.60.0" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -2763,7 +2763,7 @@ dependencies = [ [[package]] name = "swc_css_ast" -version = "0.55.0" +version = "0.56.0" dependencies = [ "is-macro", "serde", @@ -2774,7 +2774,7 @@ dependencies = [ [[package]] name = "swc_css_codegen" -version = "0.57.0" +version = "0.58.0" dependencies = [ "auto_impl", "bitflags", @@ -2800,7 +2800,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.21.0" +version = "0.22.0" dependencies = [ "swc_atoms", "swc_common", @@ -2813,7 +2813,7 @@ dependencies = [ [[package]] name = "swc_css_parser" -version = "0.59.0" +version = "0.60.0" dependencies = [ "bitflags", "lexical", @@ -2828,7 +2828,7 @@ dependencies = [ [[package]] name = "swc_css_utils" -version = "0.52.0" +version = "0.53.0" dependencies = [ "swc_atoms", "swc_common", @@ -2838,7 +2838,7 @@ dependencies = [ [[package]] name = "swc_css_visit" -version = "0.54.0" +version = "0.55.0" dependencies = [ "swc_atoms", "swc_common", @@ -3493,7 +3493,7 @@ version = "0.24.0" [[package]] name = "swc_stylis" -version = "0.56.0" +version = "0.57.0" dependencies = [ "swc_atoms", "swc_common", diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index 0cfa391dbf2..bfaa82446e5 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.59.0" +version = "0.60.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.55.0", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.57.0", path = "../swc_css_codegen"} -swc_css_minifier = {version = "0.21.0", path = "../swc_css_minifier", optional = true} -swc_css_parser = {version = "0.59.0", path = "../swc_css_parser"} -swc_css_utils = {version = "0.52.0", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.54.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.56.0", path = "../swc_css_ast"} +swc_css_codegen = {version = "0.58.0", path = "../swc_css_codegen"} +swc_css_minifier = {version = "0.22.0", path = "../swc_css_minifier", optional = true} +swc_css_parser = {version = "0.60.0", path = "../swc_css_parser"} +swc_css_utils = {version = "0.53.0", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.55.0", path = "../swc_css_visit"} diff --git a/crates/swc_css_ast/Cargo.toml b/crates/swc_css_ast/Cargo.toml index bf043206906..0d2f515f775 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.55.0" +version = "0.56.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 4ad93198c53..acd50cc07ef 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.57.0" +version = "0.58.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.55.0", path = "../swc_css_ast"} +swc_css_ast = {version = "0.56.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.59.0", path = "../swc_css_parser"} -swc_css_visit = {version = "0.54.0", path = "../swc_css_visit"} +swc_css_parser = {version = "0.60.0", path = "../swc_css_parser"} +swc_css_visit = {version = "0.55.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 9e5f2731c1f..dee0a3edbd3 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.21.0" +version = "0.22.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.55.0", path = "../swc_css_ast"} -swc_css_visit = {version = "0.54.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.56.0", path = "../swc_css_ast"} +swc_css_visit = {version = "0.55.0", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.57.0", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.59.0", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.58.0", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.60.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 3c783976d9c..2af9684fecd 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.59.0" +version = "0.60.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.55.0", path = "../swc_css_ast"} +swc_css_ast = {version = "0.56.0", path = "../swc_css_ast"} [dev-dependencies] serde = "1.0.127" serde_json = "1.0.66" -swc_css_visit = {version = "0.54.0", path = "../swc_css_visit"} +swc_css_visit = {version = "0.55.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 b9ccd22b75e..7238cd86476 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.52.0" +version = "0.53.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.55.0", path = "../swc_css_ast"} -swc_css_visit = {version = "0.54.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.56.0", path = "../swc_css_ast"} +swc_css_visit = {version = "0.55.0", path = "../swc_css_visit"} diff --git a/crates/swc_css_visit/Cargo.toml b/crates/swc_css_visit/Cargo.toml index 612d4144803..fee7c709655 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.54.0" +version = "0.55.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.55.0", path = "../swc_css_ast"} +swc_css_ast = {version = "0.56.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 7e6cd1d254f..0b4a21af22e 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.56.0" +version = "0.57.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.55.0", path = "../swc_css_ast"} -swc_css_utils = {version = "0.52.0", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.54.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.56.0", path = "../swc_css_ast"} +swc_css_utils = {version = "0.53.0", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.55.0", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.57.0", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.59.0", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.58.0", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.60.0", path = "../swc_css_parser"} testing = {version = "0.18.0", path = "../testing"}