diff --git a/.changeset/pre.json b/.changeset/pre.json index a63152259..cd1035fe9 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -53,6 +53,7 @@ "loud-kids-dress", "many-cobras-live", "moody-falcons-remain", + "nice-fireants-cheat", "orange-penguins-sneeze", "perfect-pianos-jump", "polite-pets-push", @@ -65,6 +66,8 @@ "smart-berries-accept", "smart-guests-refuse", "strong-flowers-heal", + "tasty-hounds-occur", + "tasty-schools-reply", "thirty-pugs-smile", "three-spies-wonder", "tricky-bobcats-trade", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 76896b489..fb4110387 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 6.0.0-beta.7 + +### Minor Changes + +- [#471](https://github.com/celo-org/developer-tooling/pull/471) [`26b9779`](https://github.com/celo-org/developer-tooling/commit/26b9779071ecb0283644412587d5a6d8bd6fd5a0) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - For `account:new` command add alias "celoLegacy" to the `--derivationPath` flag + +### Patch Changes + +- [#471](https://github.com/celo-org/developer-tooling/pull/471) [`26b9779`](https://github.com/celo-org/developer-tooling/commit/26b9779071ecb0283644412587d5a6d8bd6fd5a0) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - when account:new is called it displays the full bip44 derivation path in the output. Before it would miss the last 2 positions. + +- Updated dependencies [[`26b9779`](https://github.com/celo-org/developer-tooling/commit/26b9779071ecb0283644412587d5a6d8bd6fd5a0)]: + - @celo/base@7.0.0-beta.1 + ## 6.0.0-beta.6 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index c37608720..f984bc04f 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@celo/celocli", "description": "CLI Tool for transacting with the Celo protocol", - "version": "6.0.0-beta.6", + "version": "6.0.0-beta.7", "author": "Celo", "license": "Apache-2.0", "repository": "celo-org/developer-tooling", @@ -38,7 +38,7 @@ }, "dependencies": { "@celo/abis": "11.0.0", - "@celo/base": "^7.0.0-beta.0", + "@celo/base": "^7.0.0-beta.1", "@celo/compliance": "~1.0.23", "@celo/connect": "^6.1.0-beta.1", "@celo/contractkit": "^9.0.0-beta.4", diff --git a/packages/sdk/base/CHANGELOG.md b/packages/sdk/base/CHANGELOG.md index abc5c1502..9a7293d24 100644 --- a/packages/sdk/base/CHANGELOG.md +++ b/packages/sdk/base/CHANGELOG.md @@ -1,5 +1,11 @@ # @celo/base +## 7.0.0-beta.1 + +### Minor Changes + +- [#471](https://github.com/celo-org/developer-tooling/pull/471) [`26b9779`](https://github.com/celo-org/developer-tooling/commit/26b9779071ecb0283644412587d5a6d8bd6fd5a0) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - add DerivationPathAliases export + ## 7.0.0-beta.0 ### Major Changes diff --git a/packages/sdk/base/package.json b/packages/sdk/base/package.json index 5ed6451be..7e9fab770 100644 --- a/packages/sdk/base/package.json +++ b/packages/sdk/base/package.json @@ -1,6 +1,6 @@ { "name": "@celo/base", - "version": "7.0.0-beta.0", + "version": "7.0.0-beta.1", "description": "Celo base common utils, no dependencies", "author": "Celo", "license": "Apache-2.0", diff --git a/yarn.lock b/yarn.lock index 9d8afce9e..c0e8a27be 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1652,7 +1652,7 @@ __metadata: languageName: node linkType: hard -"@celo/base@npm:^7.0.0-beta.0, @celo/base@workspace:packages/sdk/base": +"@celo/base@npm:^7.0.0-beta.0, @celo/base@npm:^7.0.0-beta.1, @celo/base@workspace:packages/sdk/base": version: 0.0.0-use.local resolution: "@celo/base@workspace:packages/sdk/base" dependencies: @@ -1695,7 +1695,7 @@ __metadata: resolution: "@celo/celocli@workspace:packages/cli" dependencies: "@celo/abis": "npm:11.0.0" - "@celo/base": "npm:^7.0.0-beta.0" + "@celo/base": "npm:^7.0.0-beta.1" "@celo/celo-devchain": "npm:^7.0.0" "@celo/compliance": "npm:~1.0.23" "@celo/connect": "npm:^6.1.0-beta.1"