diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a2a20e6dca..19f2b01fe97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,9 @@ - **(es/compat)** Use remove useless source map entries generated by `classes` (#3242) ([2352920](https://github.com/swc-project/swc/commit/2352920889c217be41dd5d18c2af6088e1cd0473)) + +- **(plugin)** Add `PluginError` (#3300) ([c6ffdc8](https://github.com/swc-project/swc/commit/c6ffdc87172e504adff5757ebbb6ec2014136cf1)) + ## [1.2.130] - 2022-01-17 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 33587844af2..6aab2de63b6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2758,7 +2758,7 @@ dependencies = [ [[package]] name = "swc_common" -version = "0.17.1" +version = "0.17.2" dependencies = [ "ahash", "anyhow", diff --git a/crates/swc_common/Cargo.toml b/crates/swc_common/Cargo.toml index 758a3c126f9..dbb2c7a1e54 100644 --- a/crates/swc_common/Cargo.toml +++ b/crates/swc_common/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_common" repository = "https://github.com/swc-project/swc.git" -version = "0.17.1" +version = "0.17.2" [package.metadata.docs.rs] all-features = true