diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ee7ef5836c..2b0b8a6fd66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,9 @@ - **(es/compat)** Support more regex expressions (#4205) ([b793aa0](https://github.com/swc-project/swc/commit/b793aa020095d797a76e2c19f42ab5822ee2ef03)) + +- **(plugin)** Implement plugin api for comments (#4229) ([6ea66cf](https://github.com/swc-project/swc/commit/6ea66cf001754bb88604a824a2290a3360a798b8)) + ### Performance diff --git a/Cargo.lock b/Cargo.lock index 0b0ab7d5660..efd06bcccae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3759,7 +3759,7 @@ dependencies = [ [[package]] name = "swc_plugin" -version = "0.42.0" +version = "0.43.0" dependencies = [ "swc_atoms", "swc_common", diff --git a/crates/swc_plugin/Cargo.toml b/crates/swc_plugin/Cargo.toml index 17889968280..bf0d1b3cc31 100644 --- a/crates/swc_plugin/Cargo.toml +++ b/crates/swc_plugin/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0" name = "swc_plugin" repository = "https://github.com/swc-project/swc.git" -version = "0.42.0" +version = "0.43.0" [package.metadata.docs.rs] all-features = true