From 798f6c5a6d07751933a69040674f6aa5a2577768 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Wed, 2 Mar 2022 05:36:57 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 12 ++++++------ crates/swc_css/Cargo.toml | 8 ++++---- crates/swc_css_codegen/Cargo.toml | 4 ++-- crates/swc_css_lints/Cargo.toml | 4 ++-- crates/swc_css_minifier/Cargo.toml | 6 +++--- crates/swc_css_parser/Cargo.toml | 2 +- crates/swc_stylis/Cargo.toml | 6 +++--- 8 files changed, 29 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index afed09b73da..6198b80a252 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ # Changelog +## [unreleased] + +### Features + + + +- **(css/parser)** Improve error recovery (#3810) ([f969f8c](https://github.com/swc-project/swc/commit/f969f8c5f54e3028576a74ccfcaae72b1c19eaf9)) + ## [1.2.147] - 2022-03-02 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index b121d6e93ec..ac7a43aabf4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2849,7 +2849,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.95.0" +version = "0.96.0" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -2872,7 +2872,7 @@ dependencies = [ [[package]] name = "swc_css_codegen" -version = "0.92.0" +version = "0.93.0" dependencies = [ "auto_impl", "bitflags", @@ -2898,7 +2898,7 @@ dependencies = [ [[package]] name = "swc_css_lints" -version = "0.3.0" +version = "0.4.0" dependencies = [ "auto_impl", "parking_lot 0.12.0", @@ -2915,7 +2915,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.57.0" +version = "0.58.0" dependencies = [ "swc_atoms", "swc_common", @@ -2928,7 +2928,7 @@ dependencies = [ [[package]] name = "swc_css_parser" -version = "0.93.0" +version = "0.94.0" dependencies = [ "bitflags", "lexical", @@ -3641,7 +3641,7 @@ version = "0.24.1" [[package]] name = "swc_stylis" -version = "0.91.0" +version = "0.92.0" dependencies = [ "swc_atoms", "swc_common", diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index 632fdd6a668..2c7fc859db9 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.95.0" +version = "0.96.0" [package.metadata.docs.rs] all-features = true @@ -17,8 +17,8 @@ minifier = ["swc_css_minifier"] [dependencies] swc_css_ast = {version = "0.87.0", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.92.0", path = "../swc_css_codegen"} -swc_css_minifier = {version = "0.57.0", path = "../swc_css_minifier", optional = true} -swc_css_parser = {version = "0.93.0", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.93.0", path = "../swc_css_codegen"} +swc_css_minifier = {version = "0.58.0", path = "../swc_css_minifier", optional = true} +swc_css_parser = {version = "0.94.0", path = "../swc_css_parser"} swc_css_utils = {version = "0.84.0", path = "../swc_css_utils/"} swc_css_visit = {version = "0.86.0", path = "../swc_css_visit"} diff --git a/crates/swc_css_codegen/Cargo.toml b/crates/swc_css_codegen/Cargo.toml index 12882ae0ddb..47e1be2c27e 100644 --- a/crates/swc_css_codegen/Cargo.toml +++ b/crates/swc_css_codegen/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_codegen" repository = "https://github.com/swc-project/swc.git" -version = "0.92.0" +version = "0.93.0" [dependencies] auto_impl = "0.5.0" @@ -17,6 +17,6 @@ swc_css_ast = {version = "0.87.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.93.0", path = "../swc_css_parser"} +swc_css_parser = {version = "0.94.0", path = "../swc_css_parser"} swc_css_visit = {version = "0.86.0", path = "../swc_css_visit"} testing = {version = "0.18.0", path = "../testing"} diff --git a/crates/swc_css_lints/Cargo.toml b/crates/swc_css_lints/Cargo.toml index b7527277f2d..bd7e1635662 100644 --- a/crates/swc_css_lints/Cargo.toml +++ b/crates/swc_css_lints/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_lints" repository = "https://github.com/swc-project/swc.git" -version = "0.3.0" +version = "0.4.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -22,5 +22,5 @@ swc_css_visit = {version = "0.86.0", path = "../swc_css_visit"} [dev-dependencies] serde_json = "1.0.79" -swc_css_parser = {version = "0.93.0", path = "../swc_css_parser"} +swc_css_parser = {version = "0.94.0", path = "../swc_css_parser"} testing = {version = "0.18.0", path = "../testing"} diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index dc375e4ed35..f3da2de2e9a 100644 --- a/crates/swc_css_minifier/Cargo.toml +++ b/crates/swc_css_minifier/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.57.0" +version = "0.58.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -17,6 +17,6 @@ swc_css_ast = {version = "0.87.0", path = "../swc_css_ast"} swc_css_visit = {version = "0.86.0", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.92.0", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.93.0", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.93.0", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.94.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 cbc897c65eb..74dbd5ed0d2 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.93.0" +version = "0.94.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] diff --git a/crates/swc_stylis/Cargo.toml b/crates/swc_stylis/Cargo.toml index ed0e017a719..563b5c1184a 100644 --- a/crates/swc_stylis/Cargo.toml +++ b/crates/swc_stylis/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_stylis" repository = "https://github.com/swc-project/swc.git" -version = "0.91.0" +version = "0.92.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -18,6 +18,6 @@ swc_css_utils = {version = "0.84.0", path = "../swc_css_utils/"} swc_css_visit = {version = "0.86.0", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.92.0", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.93.0", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.93.0", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.94.0", path = "../swc_css_parser"} testing = {version = "0.18.0", path = "../testing"}