From e47f75af96d43ac9a2c461486c9432383f247322 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 Dec 2023 13:15:59 -0500 Subject: [PATCH] chore: release main (#86) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 8 ++++---- CHANGELOG.md | 9 +++++++++ Cargo.lock | 4 ++-- crates/does-it-throw-wasm/CHANGELOG.md | 4 ++++ crates/does-it-throw-wasm/Cargo.toml | 4 ++-- crates/does-it-throw/CHANGELOG.md | 7 +++++++ crates/does-it-throw/Cargo.toml | 2 +- package-lock.json | 4 ++-- package.json | 2 +- server/CHANGELOG.md | 7 +++++++ server/package.json | 2 +- 11 files changed, 40 insertions(+), 13 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c47d3ad..86b3bd7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { - "crates/does-it-throw": "0.1.13", - "crates/does-it-throw-wasm": "0.1.13", - ".": "0.3.1", - "server": "0.3.1" + "crates/does-it-throw": "0.1.14", + "crates/does-it-throw-wasm": "0.1.14", + ".": "0.3.2", + "server": "0.3.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index ce560d0..d326d48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.3.2](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-vscode-v0.3.1...does-it-throw-vscode-v0.3.2) (2023-12-17) + + +### Bug Fixes + +* add missing unit test for try statement ([#88](https://github.com/michaelangeloio/does-it-throw/issues/88)) ([290a323](https://github.com/michaelangeloio/does-it-throw/commit/290a323bae194d293ff8d0c826738f72dfef6212)) +* gifs not populating in vscode marketplace ([#85](https://github.com/michaelangeloio/does-it-throw/issues/85)) ([15a93d7](https://github.com/michaelangeloio/does-it-throw/commit/15a93d70c94e7de3139e79516fbe43a31701dfa6)) +* update server package.json keywords ([#87](https://github.com/michaelangeloio/does-it-throw/issues/87)) ([c19717d](https://github.com/michaelangeloio/does-it-throw/commit/c19717d96a09152d959bfd7d5c3a34ac62f5e26d)) + ## [0.3.1](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-vscode-v0.3.0...does-it-throw-vscode-v0.3.1) (2023-12-17) diff --git a/Cargo.lock b/Cargo.lock index 9f95868..b5096fa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -83,7 +83,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "does-it-throw" -version = "0.1.13" +version = "0.1.14" dependencies = [ "swc_common", "swc_ecma_ast", @@ -93,7 +93,7 @@ dependencies = [ [[package]] name = "does-it-throw-wasm" -version = "0.1.13" +version = "0.1.14" dependencies = [ "does-it-throw", "mockall", diff --git a/crates/does-it-throw-wasm/CHANGELOG.md b/crates/does-it-throw-wasm/CHANGELOG.md index f231390..de0791d 100644 --- a/crates/does-it-throw-wasm/CHANGELOG.md +++ b/crates/does-it-throw-wasm/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +* The following workspace dependencies were updated + * dependencies + * does-it-throw bumped from 0.1.13 to 0.1.14 + ## [0.1.13](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-wasm-v0.1.12...does-it-throw-wasm-v0.1.13) (2023-12-17) diff --git a/crates/does-it-throw-wasm/Cargo.toml b/crates/does-it-throw-wasm/Cargo.toml index dcdfa99..c79dbcb 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.13" +version = "0.1.14" 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.13"} +does-it-throw = { path = "../does-it-throw", version = "0.1.14"} swc_common = "0.33" swc_ecma_parser = "0.141.15" swc_ecma_ast = "0.110.9" diff --git a/crates/does-it-throw/CHANGELOG.md b/crates/does-it-throw/CHANGELOG.md index 8461bf6..0a9a6cc 100644 --- a/crates/does-it-throw/CHANGELOG.md +++ b/crates/does-it-throw/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.14](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-v0.1.13...does-it-throw-v0.1.14) (2023-12-17) + + +### Bug Fixes + +* add missing unit test for try statement ([#88](https://github.com/michaelangeloio/does-it-throw/issues/88)) ([290a323](https://github.com/michaelangeloio/does-it-throw/commit/290a323bae194d293ff8d0c826738f72dfef6212)) + ## [0.1.13](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-v0.1.12...does-it-throw-v0.1.13) (2023-12-17) diff --git a/crates/does-it-throw/Cargo.toml b/crates/does-it-throw/Cargo.toml index 477c4a4..09374fd 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.13" +version = "0.1.14" description = "a library for getting 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 4324047..db18504 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "does-it-throw-vscode", - "version": "0.3.1", + "version": "0.3.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "does-it-throw-vscode", - "version": "0.3.1", + "version": "0.3.2", "license": "MIT", "workspaces": [ "client", diff --git a/package.json b/package.json index 8175e89..eedd9f2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "does-it-throw-vscode", - "version": "0.3.1", + "version": "0.3.2", "main": "./client/out/extension.js", "displayName": "Does It Throw?", "description": "easily find throw statements in your JS, TS, and JSX files!", diff --git a/server/CHANGELOG.md b/server/CHANGELOG.md index 9ac68ab..537c01f 100644 --- a/server/CHANGELOG.md +++ b/server/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.3.2](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-lsp-v0.3.1...does-it-throw-lsp-v0.3.2) (2023-12-17) + + +### Bug Fixes + +* update server package.json keywords ([#87](https://github.com/michaelangeloio/does-it-throw/issues/87)) ([c19717d](https://github.com/michaelangeloio/does-it-throw/commit/c19717d96a09152d959bfd7d5c3a34ac62f5e26d)) + ## [0.3.1](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-lsp-v0.3.0...does-it-throw-lsp-v0.3.1) (2023-12-17) diff --git a/server/package.json b/server/package.json index 84cd4ac..310b2b3 100644 --- a/server/package.json +++ b/server/package.json @@ -1,7 +1,7 @@ { "name": "does-it-throw-lsp", "description": "Language Server for Does It Throw", - "version": "0.3.1", + "version": "0.3.2", "author": { "name": "Michael Angelo", "email": "email@michaelangelo.io"