diff --git a/CHANGELOG.md b/CHANGELOG.md index ca15f84..25bc315 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.12.2](https://github.com/aholstenson/ataraxia/compare/v0.12.1...v0.12.2) (2022-05-27) + + +### Bug Fixes + +* **core:** Fix findAndGossip was not checking if group nodes length was empty before picking node ([df08fb4](https://github.com/aholstenson/ataraxia/commit/df08fb4a63fdbcdd2624f6233cec00639b31cc9c)) + + + + + ## [0.12.1](https://github.com/aholstenson/ataraxia/compare/v0.12.0...v0.12.1) (2022-05-23) diff --git a/lerna.json b/lerna.json index a8640ba..b4a26c8 100644 --- a/lerna.json +++ b/lerna.json @@ -9,5 +9,5 @@ "conventionalCommits": true } }, - "version": "0.12.1" + "version": "0.12.2" } diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 7a5ab39..bc5ab8c 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/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.12.2](https://github.com/aholstenson/ataraxia/compare/v0.12.1...v0.12.2) (2022-05-27) + +**Note:** Version bump only for package ataraxia-cli + + + + + # [0.12.0](https://github.com/aholstenson/ataraxia/tree/master/packages/cli/compare/v0.11.0...v0.12.0) (2021-12-18) diff --git a/packages/cli/package.json b/packages/cli/package.json index ef48423..05a1cfb 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "ataraxia-cli", - "version": "0.12.0", + "version": "0.12.2", "description": "Command-line client for inspecting Ataraxia networks", "license": "MIT", "repository": "https://github.com/aholstenson/ataraxia/tree/master/packages/cli", @@ -20,7 +20,7 @@ "prepublishOnly": "npm run build" }, "dependencies": { - "ataraxia": "^0.12.0", + "ataraxia": "^0.12.2", "ataraxia-hyperswarm": "^0.12.0", "ataraxia-local": "^0.12.0", "ataraxia-tcp": "^0.12.0", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 99ce803..32a4b8c 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/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.12.2](https://github.com/aholstenson/ataraxia/compare/v0.12.1...v0.12.2) (2022-05-27) + + +### Bug Fixes + +* **core:** Fix findAndGossip was not checking if group nodes length was empty before picking node ([df08fb4](https://github.com/aholstenson/ataraxia/commit/df08fb4a63fdbcdd2624f6233cec00639b31cc9c)) + + + + + # [0.12.0](https://github.com/aholstenson/ataraxia/tree/master/packages/core/compare/v0.11.0...v0.12.0) (2021-12-18) diff --git a/packages/core/package.json b/packages/core/package.json index a274831..27e32c4 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "ataraxia", - "version": "0.12.0", + "version": "0.12.2", "description": "P2P messaging over mesh networks", "license": "MIT", "repository": "https://github.com/aholstenson/ataraxia/tree/master/packages/core", diff --git a/packages/services/CHANGELOG.md b/packages/services/CHANGELOG.md index f959e56..debcc7d 100644 --- a/packages/services/CHANGELOG.md +++ b/packages/services/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.12.2](https://github.com/aholstenson/ataraxia/compare/v0.12.1...v0.12.2) (2022-05-27) + +**Note:** Version bump only for package ataraxia-services + + + + + ## [0.12.1](https://github.com/aholstenson/ataraxia/compare/v0.12.0...v0.12.1) (2022-05-23) diff --git a/packages/services/package.json b/packages/services/package.json index 4ece9be..55d6e4a 100644 --- a/packages/services/package.json +++ b/packages/services/package.json @@ -1,6 +1,6 @@ { "name": "ataraxia-services", - "version": "0.12.1", + "version": "0.12.2", "description": "Services with RPC and events over Ataraxia mesh network", "license": "MIT", "repository": "https://github.com/aholstenson/ataraxia/tree/master/packages/services", @@ -19,7 +19,7 @@ "prepublishOnly": "npm run build" }, "dependencies": { - "ataraxia": "^0.12.0", + "ataraxia": "^0.12.2", "ataraxia-service-contracts": "^0.12.0", "atvik": "^3.2.0", "debug": "^4.3.3"