diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c0e055b..3739d69 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - "crates/does-it-throw": "0.1.7", - "crates/does-it-throw-wasm": "0.1.7", - ".": "0.2.0" + "crates/does-it-throw": "0.1.8", + "crates/does-it-throw-wasm": "0.1.8", + ".": "0.2.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8411b12..965c54f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.1](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-vscode-v0.2.0...does-it-throw-vscode-v0.2.1) (2023-11-09) + + +### Bug Fixes + +* move release to tag event ([#31](https://github.com/michaelangeloio/does-it-throw/issues/31)) ([082713a](https://github.com/michaelangeloio/does-it-throw/commit/082713afecc40c0d2bc230ffab22e1527298a54c)) + ## [0.2.0](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-vscode-v0.1.6...does-it-throw-vscode-v0.2.0) (2023-11-09) diff --git a/Cargo.lock b/Cargo.lock index c8668ec..fec81f9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -103,7 +103,7 @@ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" [[package]] name = "does-it-throw" -version = "0.1.7" +version = "0.1.8" dependencies = [ "swc_common", "swc_ecma_ast", @@ -113,7 +113,7 @@ dependencies = [ [[package]] name = "does-it-throw-wasm" -version = "0.1.7" +version = "0.1.8" dependencies = [ "does-it-throw", "mockall", diff --git a/crates/does-it-throw-wasm/CHANGELOG.md b/crates/does-it-throw-wasm/CHANGELOG.md index 9123d5c..313dedb 100644 --- a/crates/does-it-throw-wasm/CHANGELOG.md +++ b/crates/does-it-throw-wasm/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.1.8](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-wasm-v0.1.7...does-it-throw-wasm-v0.1.8) (2023-11-09) + + +### Bug Fixes + +* move release to tag event ([#31](https://github.com/michaelangeloio/does-it-throw/issues/31)) ([082713a](https://github.com/michaelangeloio/does-it-throw/commit/082713afecc40c0d2bc230ffab22e1527298a54c)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * does-it-throw bumped from 0.1.7 to 0.1.8 + ## [0.1.7](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-wasm-v0.1.6...does-it-throw-wasm-v0.1.7) (2023-11-09) diff --git a/crates/does-it-throw-wasm/Cargo.toml b/crates/does-it-throw-wasm/Cargo.toml index 213683c..8e60dea 100644 --- a/crates/does-it-throw-wasm/Cargo.toml +++ b/crates/does-it-throw-wasm/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "does-it-throw-wasm" -version = "0.1.7" +version = "0.1.8" description = "a wasm binding for does-it-throw, using SWC" license = "MIT" documentation = "https://github.com/michaelangeloio/does-it-throw/blob/main/readme.md" @@ -13,7 +13,7 @@ homepage = "https://github.com/michaelangeloio/does-it-throw/blob/main/readme.md crate-type = ["cdylib"] [dependencies] -does-it-throw = { path = "../does-it-throw", version = "0.1.7"} +does-it-throw = { path = "../does-it-throw", version = "0.1.8"} swc_common = "0.33" swc_ecma_parser = "0.141.3" swc_ecma_ast = "0.110.0" diff --git a/crates/does-it-throw/CHANGELOG.md b/crates/does-it-throw/CHANGELOG.md index 0b6c141..211b60d 100644 --- a/crates/does-it-throw/CHANGELOG.md +++ b/crates/does-it-throw/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.8](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-v0.1.7...does-it-throw-v0.1.8) (2023-11-09) + + +### Bug Fixes + +* move release to tag event ([#31](https://github.com/michaelangeloio/does-it-throw/issues/31)) ([082713a](https://github.com/michaelangeloio/does-it-throw/commit/082713afecc40c0d2bc230ffab22e1527298a54c)) + ## [0.1.7](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-v0.1.6...does-it-throw-v0.1.7) (2023-11-09) diff --git a/crates/does-it-throw/Cargo.toml b/crates/does-it-throw/Cargo.toml index 08c14e5..b429b7b 100644 --- a/crates/does-it-throw/Cargo.toml +++ b/crates/does-it-throw/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "does-it-throw" -version = "0.1.7" +version = "0.1.8" description = "a library for finding ES throw statements, using SWC" license = "MIT" documentation = "https://github.com/michaelangeloio/does-it-throw/blob/main/readme.md" diff --git a/package-lock.json b/package-lock.json index 6c1f3e6..5848f81 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "does-it-throw", - "version": "0.2.0", + "version": "0.2.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "does-it-throw", - "version": "0.2.0", + "version": "0.2.1", "license": "MIT", "workspaces": [ "client", diff --git a/package.json b/package.json index 077e0ba..ad513a3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "does-it-throw-vscode", - "version": "0.2.0", + "version": "0.2.1", "main": "./client/out/extension.js", "repository": { "url": "https://github.com/michaelangeloio/does-it-throw"