Skip to content

Commit

Permalink
chore: release main (#41)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Nov 10, 2023
1 parent cf258cd commit 2ea137f
Show file tree
Hide file tree
Showing 9 changed files with 45 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"crates/does-it-throw": "0.1.10",
"crates/does-it-throw-wasm": "0.1.10",
".": "0.2.4"
"crates/does-it-throw": "0.1.11",
"crates/does-it-throw-wasm": "0.1.11",
".": "0.2.5"
}
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [0.2.5](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-vscode-v0.2.4...does-it-throw-vscode-v0.2.5) (2023-11-10)


### Bug Fixes

* add coverage for switch statements ([#43](https://github.com/michaelangeloio/does-it-throw/issues/43)) ([99fda18](https://github.com/michaelangeloio/does-it-throw/commit/99fda183a7ca813cbb5f5434f429cd79b594f139))
* re-organize primary crate into modules ([#42](https://github.com/michaelangeloio/does-it-throw/issues/42)) ([badb106](https://github.com/michaelangeloio/does-it-throw/commit/badb1061d0dfc679458d55609e43cccfdca01794))
* update details, fix logic in some call expressions, including spread operators ([#40](https://github.com/michaelangeloio/does-it-throw/issues/40)) ([cdfdf47](https://github.com/michaelangeloio/does-it-throw/commit/cdfdf47a2d657364abc1b3b3ce97e89405b842b3))
* update readme and contributing ([#44](https://github.com/michaelangeloio/does-it-throw/issues/44)) ([cf258cd](https://github.com/michaelangeloio/does-it-throw/commit/cf258cd8baffb9277a8039cdb7416378691d6684))

## [0.2.4](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-vscode-v0.2.3...does-it-throw-vscode-v0.2.4) (2023-11-09)


Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions crates/does-it-throw-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [0.1.11](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-wasm-v0.1.10...does-it-throw-wasm-v0.1.11) (2023-11-10)


### Bug Fixes

* re-organize primary crate into modules ([#42](https://github.com/michaelangeloio/does-it-throw/issues/42)) ([badb106](https://github.com/michaelangeloio/does-it-throw/commit/badb1061d0dfc679458d55609e43cccfdca01794))
* update details, fix logic in some call expressions, including spread operators ([#40](https://github.com/michaelangeloio/does-it-throw/issues/40)) ([cdfdf47](https://github.com/michaelangeloio/does-it-throw/commit/cdfdf47a2d657364abc1b3b3ce97e89405b842b3))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* does-it-throw bumped from 0.1.10 to 0.1.11

## [0.1.10](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-wasm-v0.1.9...does-it-throw-wasm-v0.1.10) (2023-11-09)


Expand Down
4 changes: 2 additions & 2 deletions crates/does-it-throw-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "does-it-throw-wasm"
version = "0.1.10"
version = "0.1.11"
description = "a WASM binding for does-it-throw - using SWC"
license = "MIT"
documentation = "https://github.com/michaelangeloio/does-it-throw/blob/main/readme.md"
Expand All @@ -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.10"}
does-it-throw = { path = "../does-it-throw", version = "0.1.11"}
swc_common = "0.33"
swc_ecma_parser = "0.141.3"
swc_ecma_ast = "0.110.0"
Expand Down
9 changes: 9 additions & 0 deletions crates/does-it-throw/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.1.11](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-v0.1.10...does-it-throw-v0.1.11) (2023-11-10)


### Bug Fixes

* add coverage for switch statements ([#43](https://github.com/michaelangeloio/does-it-throw/issues/43)) ([99fda18](https://github.com/michaelangeloio/does-it-throw/commit/99fda183a7ca813cbb5f5434f429cd79b594f139))
* re-organize primary crate into modules ([#42](https://github.com/michaelangeloio/does-it-throw/issues/42)) ([badb106](https://github.com/michaelangeloio/does-it-throw/commit/badb1061d0dfc679458d55609e43cccfdca01794))
* update details, fix logic in some call expressions, including spread operators ([#40](https://github.com/michaelangeloio/does-it-throw/issues/40)) ([cdfdf47](https://github.com/michaelangeloio/does-it-throw/commit/cdfdf47a2d657364abc1b3b3ce97e89405b842b3))

## [0.1.10](https://github.com/michaelangeloio/does-it-throw/compare/does-it-throw-v0.1.9...does-it-throw-v0.1.10) (2023-11-09)


Expand Down
2 changes: 1 addition & 1 deletion crates/does-it-throw/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "does-it-throw"
version = "0.1.10"
version = "0.1.11"
description = "a library for getting ES throw statements - using SWC"
license = "MIT"
documentation = "https://github.com/michaelangeloio/does-it-throw/blob/main/readme.md"
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "does-it-throw-vscode",
"version": "0.2.4",
"version": "0.2.5",
"main": "./client/out/extension.js",
"displayName": "Does It Throw?",
"description": "easily find throw statements in your JS, TS, and JSX files!",
Expand Down

0 comments on commit 2ea137f

Please sign in to comment.