From abb3c5942c3d91debf139ec9f6fdd1df01d30c02 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Wed, 23 Feb 2022 14:59:32 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 2 +- crates/swc_ecma_parser/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3db8269caab..47154e33c0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,9 @@ - **(es/parser)** Allow `Expr::TsInstantiation` in extends clause (#3696) ([d499b8c](https://github.com/swc-project/swc/commit/d499b8c14f0f75fd48fd7f5e4b7ad6e790bf4882)) +- **(es/parser)** Disallow using reserved words as an expression in typescript (#3697) ([d6522f3](https://github.com/swc-project/swc/commit/d6522f3a37f38aef713c7cbba06349708b56ee27)) + + - **(es/typescript)** Fix `name` of decorated classes (#3689) ([1e49fcd](https://github.com/swc-project/swc/commit/1e49fcd44daa3107a180f7016d72f8138fb56688)) ### Features diff --git a/Cargo.lock b/Cargo.lock index 98611f52f1c..f4c4802b81f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3028,7 +3028,7 @@ dependencies = [ [[package]] name = "swc_ecma_parser" -version = "0.91.2" +version = "0.91.3" dependencies = [ "either", "enum_kind", diff --git a/crates/swc_ecma_parser/Cargo.toml b/crates/swc_ecma_parser/Cargo.toml index 2d025b30d96..dc530c315d3 100644 --- a/crates/swc_ecma_parser/Cargo.toml +++ b/crates/swc_ecma_parser/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "examples/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_parser" repository = "https://github.com/swc-project/swc.git" -version = "0.91.2" +version = "0.91.3" [package.metadata.docs.rs] all-features = true