diff --git a/Cargo.lock b/Cargo.lock index d1ae9f8..5d5511b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -103,7 +103,7 @@ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" [[package]] name = "does-it-throw" -version = "0.1.5" +version = "0.1.6" dependencies = [ "swc_common", "swc_ecma_ast", @@ -113,7 +113,7 @@ dependencies = [ [[package]] name = "does-it-throw-wasm" -version = "0.1.5" +version = "0.1.6" dependencies = [ "does-it-throw", "mockall", diff --git a/Cargo.toml b/Cargo.toml index 1e722b2..e3c4a90 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [workspace] resolver = "2" -version = "0.1.5" +version = "0.1.6" authors = [ "michaelangeloio" ] diff --git a/client/package.json b/client/package.json index e032559..40cb4e5 100644 --- a/client/package.json +++ b/client/package.json @@ -3,7 +3,7 @@ "description": "VSCode part of a language server", "author": "Microsoft Corporation", "license": "MIT", - "version": "0.1.5", + "version": "0.1.6", "publisher": "vscode", "repository": { "type": "git", diff --git a/crates/does-it-throw-wasm/Cargo.toml b/crates/does-it-throw-wasm/Cargo.toml index 3e926d8..f3b30f3 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.5" +version = "0.1.6" description = "LSP server wasm binding for does-it-throw" 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.5"} +does-it-throw = { path = "../does-it-throw", version = "0.1.6"} swc_common = "0.33" swc_ecma_parser = "0.141.3" swc_ecma_ast = "0.110.0" diff --git a/crates/does-it-throw/Cargo.toml b/crates/does-it-throw/Cargo.toml index 4f05602..f549bf8 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.5" +version = "0.1.6" description = "LSP library for finding ES throw statements" license = "MIT" documentation = "https://github.com/michaelangeloio/does-it-throw/blob/main/readme.md" diff --git a/package.json b/package.json index cdbc357..7038f8b 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { "name": "does-it-throw", - "version": "0.1.5", + "version": "0.1.6", "main": "./client/out/extension.js", "repository": { "url": "https://github.com/michaelangeloio/does-it-throw" }, - "icon": "assets/icon-128.png", + "icon": "assets/icon-small.png", "author": { "name": "Michael Angelo", "email": "email@michaelangelo.io" diff --git a/server/package.json b/server/package.json index 95a9b23..b87079c 100644 --- a/server/package.json +++ b/server/package.json @@ -1,7 +1,7 @@ { "name": "vscode-does-it-throw-server", "description": "Example implementation of a language server in node.", - "version": "0.1.5", + "version": "0.1.6", "author": "Microsoft Corporation", "license": "MIT", "engines": {