diff --git a/CHANGELOG.md b/CHANGELOG.md index 7488293d8d7d..173589b62384 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ - **(es/compat)** Consider only the variables used in the closure ([#9151](https://github.com/swc-project/swc/issues/9151)) ([1357531](https://github.com/swc-project/swc/commit/1357531805d529b11848b02d1b59c010a02d272d)) +### Features + + + +- **(allocator)** Initialize package ([#9195](https://github.com/swc-project/swc/issues/9195)) ([f3681cb](https://github.com/swc-project/swc/commit/f3681cb34009824725d39d25b0cbf787ec1e8bd8)) + ### Miscellaneous Tasks diff --git a/Cargo.lock b/Cargo.lock index c6c3b4f5d30a..292881f9c556 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3686,7 +3686,7 @@ dependencies = [ [[package]] name = "swc_allocator" -version = "0.1.0" +version = "0.1.1" dependencies = [ "bumpalo", ] diff --git a/crates/swc_allocator/Cargo.toml b/crates/swc_allocator/Cargo.toml index 3355b6e8e306..ca32f62fd4c1 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.0" +version = "0.1.1" [dependencies] bumpalo = { workspace = true, features = ["boxed", "collections"] }