From 4cdf4b96e35ad8e799353f3e02b0edc55ddf3aac Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Sun, 27 Mar 2022 05:34:40 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 2 +- crates/swc_ecma_codegen/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68f130c6aaa..f9bdd9e1ea5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,9 @@ - **(es/codegen)** Fix codegen of template literals (#4124) ([f5a5217](https://github.com/swc-project/swc/commit/f5a5217506dd18b4ad49920d2e82026eb85dfd73)) +- **(es/codegen)** Emit sourcemap of key-value properties correctly (#4166) ([ea0de90](https://github.com/swc-project/swc/commit/ea0de9013768bac03d60beb984aa177e0d943694)) + + - **(es/lints)** Ignore type-only imports while checking duplicates (#4163) ([fce554c](https://github.com/swc-project/swc/commit/fce554cfb02d034942ab64114ea212020c51e570)) diff --git a/Cargo.lock b/Cargo.lock index 7e64c718faf..1a1f3c5cff9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3273,7 +3273,7 @@ dependencies = [ [[package]] name = "swc_ecma_codegen" -version = "0.100.0" +version = "0.100.1" dependencies = [ "bitflags", "memchr", diff --git a/crates/swc_ecma_codegen/Cargo.toml b/crates/swc_ecma_codegen/Cargo.toml index 05225c8df86..d021789190b 100644 --- a/crates/swc_ecma_codegen/Cargo.toml +++ b/crates/swc_ecma_codegen/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_codegen" repository = "https://github.com/swc-project/swc.git" -version = "0.100.0" +version = "0.100.1" [dependencies] bitflags = "1"