Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release main #30

Merged
merged 1 commit into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.6",
"crates/does-it-throw-wasm": "0.1.6",
".": "0.1.6"
"crates/does-it-throw": "0.1.7",
"crates/does-it-throw-wasm": "0.1.7",
".": "0.2.0"
}
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Changelog

## [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)


### Features

* try release please manifest ([a8b6e14](https://github.com/michaelangeloio/does-it-throw/commit/a8b6e14dfbf4cc3c13baa84d9570d0421ca804b1))


### Bug Fixes

* add plugins ([22ed677](https://github.com/michaelangeloio/does-it-throw/commit/22ed6770f4cd4b4805351746768a46c83400e7a3))
* proper release manifest filename ([60cbfae](https://github.com/michaelangeloio/does-it-throw/commit/60cbfaee9f01e4aa12478f12559f9d05890cb232))
* testing release ([#26](https://github.com/michaelangeloio/does-it-throw/issues/26)) ([fe1bea4](https://github.com/michaelangeloio/does-it-throw/commit/fe1bea48ac278d2d4fa23aba775e9ea5fd51c59a))
* try updated config ([aeaa47f](https://github.com/michaelangeloio/does-it-throw/commit/aeaa47f6b9c7ecfed85187523478258ca5900217))
* try updated config again ([995dc18](https://github.com/michaelangeloio/does-it-throw/commit/995dc18dd10a0c816d6b34d621e765655a8e4ed7))
* try updating action ([d71bbae](https://github.com/michaelangeloio/does-it-throw/commit/d71bbaea624f9031d90a4a26f37ff0d2b4888042))
* try updating action again ([83dec44](https://github.com/michaelangeloio/does-it-throw/commit/83dec44c31dfd1f5603587e01b7ed09e87cdbc8e))
* try updating manifest ([ee86305](https://github.com/michaelangeloio/does-it-throw/commit/ee86305f424fa3d300c144305fd1e963f4c2084c))
* update action ([2269fe5](https://github.com/michaelangeloio/does-it-throw/commit/2269fe5c92787c6685f7fe8309afdb876064a888))
* update action ([843e77c](https://github.com/michaelangeloio/does-it-throw/commit/843e77c393db15569d8fa22c016a03f1a0ac78c1))
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
@@ -0,0 +1,15 @@
# Changelog

## [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)


### Bug Fixes

* try updated config again ([995dc18](https://github.com/michaelangeloio/does-it-throw/commit/995dc18dd10a0c816d6b34d621e765655a8e4ed7))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* does-it-throw bumped from 0.1.6 to 0.1.7
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.6"
version = "0.1.7"
description = "LSP server 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.6"}
does-it-throw = { path = "../does-it-throw", version = "0.1.7"}
swc_common = "0.33"
swc_ecma_parser = "0.141.3"
swc_ecma_ast = "0.110.0"
Expand Down
8 changes: 8 additions & 0 deletions crates/does-it-throw/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## [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)


### Bug Fixes

* try updated config again ([995dc18](https://github.com/michaelangeloio/does-it-throw/commit/995dc18dd10a0c816d6b34d621e765655a8e4ed7))
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.6"
version = "0.1.7"
description = "LSP library for finding 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.1.6",
"version": "0.2.0",
"main": "./client/out/extension.js",
"repository": {
"url": "https://github.com/michaelangeloio/does-it-throw"
Expand Down