From 69181e822c648dadc474069512cb199bbc3b8e4b Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Thu, 10 Feb 2022 13:55:12 +0900 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 6 ++++++ Cargo.lock | 4 ++-- crates/swc_css_parser/Cargo.toml | 2 +- crates/swc_ecma_minifier/Cargo.toml | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a76a11be041..a0fcb104f36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,9 @@ - **(es/lints)** Implement `no-use-before-define` rule (#3456) ([205b76e](https://github.com/swc-project/swc/commit/205b76e78d238de3a5cb8ab64aa5c61799b77bd2)) +- **(es/minifier)** Implement `reserved` mangle option (#3476) ([5488159](https://github.com/swc-project/swc/commit/5488159ba5dd124878ebdc50c390a51ab3b07f16)) + + - **(swc/plugin)** Implement proxy for `Mark::fresh` (#3492) ([494b4c8](https://github.com/swc-project/swc/commit/494b4c8203514dd9f21b2bc3804ba8c44d46a4a1)) ### Miscellaneous Tasks @@ -46,6 +49,9 @@ - **(css/ast)** Rename types to match specification (#3484) ([460f846](https://github.com/swc-project/swc/commit/460f84693414c58d4aa116f9d4e630b1e32bffa4)) + +- **(css/parser)** Refactor codes related to simple blocks (#3506) ([4e124c7](https://github.com/swc-project/swc/commit/4e124c7bca85d70b6e4836038ea1aaa25b9ea663)) + ### Testing diff --git a/Cargo.lock b/Cargo.lock index 24813b73f65..fae8edc0337 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2814,7 +2814,7 @@ dependencies = [ [[package]] name = "swc_css_parser" -version = "0.74.0" +version = "0.74.1" dependencies = [ "bitflags", "lexical", @@ -2960,7 +2960,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "0.73.0" +version = "0.73.1" dependencies = [ "ahash", "ansi_term", diff --git a/crates/swc_css_parser/Cargo.toml b/crates/swc_css_parser/Cargo.toml index 620509a2b7f..6056ebaf2ff 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.74.0" +version = "0.74.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index 83a344653e3..ab997ba3070 100644 --- a/crates/swc_ecma_minifier/Cargo.toml +++ b/crates/swc_ecma_minifier/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"] license = "Apache-2.0" name = "swc_ecma_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.73.0" +version = "0.73.1" [package.metadata.docs.rs] all-features = true