From b2a22ed771a64af7388363fa72a71b090ecb3e0c Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Mon, 15 Jul 2024 09:54:45 +0000 Subject: [PATCH] chore: Bump crates --- CHANGELOG.md | 6 +++--- Cargo.lock | 4 ++-- crates/swc_allocator/Cargo.toml | 2 +- crates/swc_core/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2acd8a18c64..d1fca336a601 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -65,6 +65,9 @@ - **(allocator)** Add a cargo feature ([#9239](https://github.com/swc-project/swc/issues/9239)) ([398dc21](https://github.com/swc-project/swc/commit/398dc21e073d8271fa7ac4169b93ed8b96645459)) +- **(allocator)** Implement `default` mode ([#9242](https://github.com/swc-project/swc/issues/9242)) ([b6333db](https://github.com/swc-project/swc/commit/b6333dbcfcc8f25d08a1187704796732366ac9d7)) + + - **(es/typescript)** Add `transform` mode back to fast TS strip ([#9237](https://github.com/swc-project/swc/issues/9237)) ([8231e3c](https://github.com/swc-project/swc/commit/8231e3cd4f72ad120735f6a21d9616e98d61eed1)) @@ -1363,9 +1366,6 @@ - **(common)** Remove `<` and `>` from `Display` impl of `FileName::Custom` ([#8530](https://github.com/swc-project/swc/issues/8530)) ([014a6cd](https://github.com/swc-project/swc/commit/014a6cda8205183f6c3a5e395b6f89cbf7b388b9)) - -- **(es/codegen)** Fix codegen of `\\0` ([#8433](https://github.com/swc-project/swc/issues/8433)) ([9f1ce3a](https://github.com/swc-project/swc/commit/9f1ce3acd6965302afb3a65713f429fd1ddf4a2b)) - ### Miscellaneous Tasks diff --git a/Cargo.lock b/Cargo.lock index a7e4632d070f..fdb4cd54d573 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3698,7 +3698,7 @@ dependencies = [ [[package]] name = "swc_allocator" -version = "0.1.4" +version = "0.1.5" dependencies = [ "allocator-api2", "bumpalo", @@ -3891,7 +3891,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.97.4" +version = "0.97.5" dependencies = [ "anyhow", "binding_macros", diff --git a/crates/swc_allocator/Cargo.toml b/crates/swc_allocator/Cargo.toml index fea88da1c326..a9c7fe7366ee 100644 --- a/crates/swc_allocator/Cargo.toml +++ b/crates/swc_allocator/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_allocator" repository = { workspace = true } -version = "0.1.4" +version = "0.1.5" [package.metadata.docs.rs] all-features = true diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index dd560cb41daf..c1bb66a6154f 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_core" repository = "https://github.com/swc-project/swc.git" -version = "0.97.4" +version = "0.97.5" [package.metadata.docs.rs] features = [ "allocator_node",