From adc7b84f1f4221cc015cde5837f1c72e617d52a0 Mon Sep 17 00:00:00 2001 From: David Worms Date: Sat, 27 Jul 2024 01:01:02 +0200 Subject: [PATCH] chore(release): publish --- CHANGELOG.md | 11 +++++++++++ lerna.json | 2 +- packages/grpc_client/CHANGELOG.md | 8 ++++++++ packages/grpc_client/package.json | 4 ++-- packages/grpc_proto/CHANGELOG.md | 8 ++++++++ packages/grpc_proto/package.json | 2 +- packages/grpc_server/CHANGELOG.md | 8 ++++++++ packages/grpc_server/package.json | 4 ++-- packages/shell/CHANGELOG.md | 11 +++++++++++ packages/shell/package.json | 2 +- samples/CHANGELOG.md | 8 ++++++++ samples/package.json | 4 ++-- 12 files changed, 63 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af4a56e..172f64d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.10.0](https://github.com/adaltas/node-shell/compare/v0.9.6...v0.10.0) (2024-07-26) + + +### Features + +* support node 20 and 22 ([b462be6](https://github.com/adaltas/node-shell/commit/b462be6883b2bd14b35550fb3cc9177c4458f67e)) + + + + + ## [0.9.5](https://github.com/adaltas/node-shell/compare/v0.9.4...v0.9.5) (2024-01-17) diff --git a/lerna.json b/lerna.json index a9f4410..6feb774 100644 --- a/lerna.json +++ b/lerna.json @@ -9,5 +9,5 @@ ], "npmClient": "yarn", "useWorkspaces": true, - "version": "0.9.6" + "version": "0.10.0" } diff --git a/packages/grpc_client/CHANGELOG.md b/packages/grpc_client/CHANGELOG.md index da2073e..9c45170 100644 --- a/packages/grpc_client/CHANGELOG.md +++ b/packages/grpc_client/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.10.0](https://github.com/adaltas/node-shell/compare/v0.9.6...v0.10.0) (2024-07-26) + +**Note:** Version bump only for package @shell-js/grpc_client + + + + + ## [0.9.4](https://github.com/adaltas/node-shell/compare/v0.9.3...v0.9.4) (2022-03-15) diff --git a/packages/grpc_client/package.json b/packages/grpc_client/package.json index c14c4d4..b670fc6 100644 --- a/packages/grpc_client/package.json +++ b/packages/grpc_client/package.json @@ -1,6 +1,6 @@ { "name": "@shell-js/grpc_client", - "version": "0.9.6", + "version": "0.10.0", "author": "David Worms (https://www.adaltas.com)", "coffeelintConfig": { "indentation": { @@ -23,7 +23,7 @@ }, "description": "GRPC client plugin for the Shell.js package.", "devDependencies": { - "@shell-js/grpc_server": "^0.9.6", + "@shell-js/grpc_server": "^0.10.0", "coffeescript": "^2.7.0", "mocha": "^10.7.0", "should": "^13.2.3" diff --git a/packages/grpc_proto/CHANGELOG.md b/packages/grpc_proto/CHANGELOG.md index 3c6a6e8..fda264c 100644 --- a/packages/grpc_proto/CHANGELOG.md +++ b/packages/grpc_proto/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.10.0](https://github.com/adaltas/node-shell/compare/v0.9.6...v0.10.0) (2024-07-26) + +**Note:** Version bump only for package @shell-js/grpc_proto + + + + + ## [0.9.4](https://github.com/adaltas/node-shell/compare/v0.9.3...v0.9.4) (2022-03-15) diff --git a/packages/grpc_proto/package.json b/packages/grpc_proto/package.json index ad0fc86..f679e75 100644 --- a/packages/grpc_proto/package.json +++ b/packages/grpc_proto/package.json @@ -1,6 +1,6 @@ { "name": "@shell-js/grpc_proto", - "version": "0.9.6", + "version": "0.10.0", "author": "David Worms (https://www.adaltas.com)", "contributors": [ "Sergei Kudinov (https://www.adaltas.com)" diff --git a/packages/grpc_server/CHANGELOG.md b/packages/grpc_server/CHANGELOG.md index 19902db..a5b5a8d 100644 --- a/packages/grpc_server/CHANGELOG.md +++ b/packages/grpc_server/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.10.0](https://github.com/adaltas/node-shell/compare/v0.9.6...v0.10.0) (2024-07-26) + +**Note:** Version bump only for package @shell-js/grpc_server + + + + + ## [0.9.4](https://github.com/adaltas/node-shell/compare/v0.9.3...v0.9.4) (2022-03-15) diff --git a/packages/grpc_server/package.json b/packages/grpc_server/package.json index 6ac6d81..691ed91 100644 --- a/packages/grpc_server/package.json +++ b/packages/grpc_server/package.json @@ -1,6 +1,6 @@ { "name": "@shell-js/grpc_server", - "version": "0.9.6", + "version": "0.10.0", "author": "David Worms (https://www.adaltas.com)", "coffeelintConfig": { "indentation": { @@ -20,7 +20,7 @@ ], "dependencies": { "@grpc/grpc-js": "^1.11.1", - "@shell-js/grpc_proto": "^0.9.6", + "@shell-js/grpc_proto": "^0.10.0", "mixme": "^1.1.0", "protobufjs": "^7.3.2" }, diff --git a/packages/shell/CHANGELOG.md b/packages/shell/CHANGELOG.md index 9c32d48..6e0da34 100644 --- a/packages/shell/CHANGELOG.md +++ b/packages/shell/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.10.0](https://github.com/adaltas/node-shell/compare/v0.9.6...v0.10.0) (2024-07-26) + + +### Features + +* support node 20 and 22 ([b462be6](https://github.com/adaltas/node-shell/commit/b462be6883b2bd14b35550fb3cc9177c4458f67e)) + + + + + ## [0.9.5](https://github.com/adaltas/node-shell/compare/v0.9.4...v0.9.5) (2024-01-17) diff --git a/packages/shell/package.json b/packages/shell/package.json index da96b54..8ee5193 100644 --- a/packages/shell/package.json +++ b/packages/shell/package.json @@ -1,6 +1,6 @@ { "name": "shell", - "version": "0.9.6", + "version": "0.10.0", "author": "David Worms (https://www.adaltas.com)", "coffeelintConfig": { "indentation": { diff --git a/samples/CHANGELOG.md b/samples/CHANGELOG.md index ee75d8b..3fa4001 100644 --- a/samples/CHANGELOG.md +++ b/samples/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.10.0](https://github.com/adaltas/node-shell/compare/v0.9.6...v0.10.0) (2024-07-26) + +**Note:** Version bump only for package @shell-js/samples + + + + + ## [0.9.5](https://github.com/adaltas/node-shell/compare/v0.9.4...v0.9.5) (2024-01-17) **Note:** Version bump only for package @shell-js/samples diff --git a/samples/package.json b/samples/package.json index c0c66b4..2a38185 100644 --- a/samples/package.json +++ b/samples/package.json @@ -1,9 +1,9 @@ { "name": "@shell-js/samples", - "version": "0.9.6", + "version": "0.10.0", "private": true, "dependencies": { - "shell": "^0.9.6" + "shell": "^0.10.0" }, "devDependencies": { "glob": "^11.0.0",