diff --git a/CHANGELOG.md b/CHANGELOG.md index f9f98f86839..a7a469690e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,9 @@ - **(es/compat)** Add tracing support to transforms for from es2017 to es2019 (#3844) ([a933db5](https://github.com/swc-project/swc/commit/a933db5a1a54804efefd1b1d901b85a44ba059a5)) +- **(es/compat)** Add tracing support for es2015 transforms (#3857) ([cd8bb0f](https://github.com/swc-project/swc/commit/cd8bb0fb2c70c30ea421842fc6c5b6837e3ff182)) + + - **(es/transform)** Use `SingleThreadedComments` for transform (#3847) ([73ec0b3](https://github.com/swc-project/swc/commit/73ec0b3dd734dfd1ee79addfe078c709620ade17)) ## [1.2.148] - 2022-03-04 diff --git a/Cargo.lock b/Cargo.lock index dfce1b9245f..7a63291789e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3266,7 +3266,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_compat" -version = "0.75.7" +version = "0.75.8" dependencies = [ "ahash", "arrayvec 0.7.2", diff --git a/crates/swc_ecma_transforms_compat/Cargo.toml b/crates/swc_ecma_transforms_compat/Cargo.toml index 85929cab91c..17de99899d4 100644 --- a/crates/swc_ecma_transforms_compat/Cargo.toml +++ b/crates/swc_ecma_transforms_compat/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_transforms_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.75.7" +version = "0.75.8" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features]