From 26c5519b66279c494e2d63e853bbe5c3826f2404 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Sun, 14 Jul 2024 04:29:20 +0000 Subject: [PATCH] chore: Bump crates --- CHANGELOG.md | 3 +++ Cargo.lock | 2 +- crates/swc_allocator/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f61372ed49e..23a0af3e63dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,6 +50,9 @@ - **(allocator)** Initialize package ([#9195](https://github.com/swc-project/swc/issues/9195)) ([f3681cb](https://github.com/swc-project/swc/commit/f3681cb34009824725d39d25b0cbf787ec1e8bd8)) +- **(allocator)** Implement `SwcAlloc` ([#9232](https://github.com/swc-project/swc/issues/9232)) ([e343eb6](https://github.com/swc-project/swc/commit/e343eb6de2747086f9873c6444964500e40b4936)) + + - **(es/utils)** Support for arrays using `cast_to_number` ([#9212](https://github.com/swc-project/swc/issues/9212)) ([2aef14d](https://github.com/swc-project/swc/commit/2aef14d34d22df41bd6f421633eadc50826217cc)) ### Miscellaneous Tasks diff --git a/Cargo.lock b/Cargo.lock index de37a4f3b5c2..5d8f6fe37e58 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3698,7 +3698,7 @@ dependencies = [ [[package]] name = "swc_allocator" -version = "0.1.1" +version = "0.1.2" dependencies = [ "allocator-api2", "bumpalo", diff --git a/crates/swc_allocator/Cargo.toml b/crates/swc_allocator/Cargo.toml index 621eb8d27c07..afa41b6a8f10 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.1" +version = "0.1.2" [features] rkyv = ["dep:rkyv"]