Skip to content

Commit

Permalink
8.0.0 (#143)
Browse files Browse the repository at this point in the history
* 8.0.0

* Update CHANGELOG.md

---------

Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Maarten Zuidhoorn <maarten@zuidhoorn.com>
  • Loading branch information
3 people authored Jul 12, 2023
1 parent 8720863 commit 8b04a9b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [8.0.0]
### Changed
- **BREAKING:** Build the package as both CJS and ESM ([#140](https://github.com/MetaMask/key-tree/pull/139))
- Distribution files have been moved from `dist` to `dist/cjs` (and `dist/esm`). If you are explicitly importing from `dist`, you have to update the import.
- Bump `@metamask/utils` to `6.2.0` ([#140](https://github.com/MetaMask/key-tree/pull/140))

## [7.1.1]
### Fixed
- Fix `isValidBIP32PathSegment` to correctly check if BIP-32 path segment is `<= 2^31-1` ([#134](https://github.com/MetaMask/key-tree/pull/134))
Expand All @@ -19,7 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [7.0.0]
### Added
- BREAKING: Add SLIP-10 (`slip10:`) path type ([#124](https://github.com/MetaMask/key-tree/pull/124))
- **BREAKING:** Add SLIP-10 (`slip10:`) path type ([#124](https://github.com/MetaMask/key-tree/pull/124))
- `bip32:` can no longer be used to derive ed25519 keys

### Changed
Expand Down Expand Up @@ -47,7 +53,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [6.0.0]
### Changed
- BREAKING: Rename all occurrences of `Buffer` with `Bytes` or `Uint8Array` ([#84](https://github.com/MetaMask/key-tree/pull/84))
- **BREAKING:** Rename all occurrences of `Buffer` with `Bytes` or `Uint8Array` ([#84](https://github.com/MetaMask/key-tree/pull/84))
- All `[...]Buffer` fields have been replaced with `[...]Bytes`, e.g., `BIP44Node.privateKeyBuffer` is now `BIP44Node.privateKeyBytes`.
- This change does not affect the string fields, like `BIP44Node.privateKey`.
- BREAKING: Swap out Buffer with browser-compatible Uint8Array ([#83](https://github.com/MetaMask/key-tree/pull/83))
Expand Down Expand Up @@ -137,7 +143,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release.

[Unreleased]: https://github.com/MetaMask/key-tree/compare/v7.1.1...HEAD
[Unreleased]: https://github.com/MetaMask/key-tree/compare/v8.0.0...HEAD
[8.0.0]: https://github.com/MetaMask/key-tree/compare/v7.1.1...v8.0.0
[7.1.1]: https://github.com/MetaMask/key-tree/compare/v7.1.0...v7.1.1
[7.1.0]: https://github.com/MetaMask/key-tree/compare/v7.0.0...v7.1.0
[7.0.0]: https://github.com/MetaMask/key-tree/compare/v6.2.1...v7.0.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/key-tree",
"version": "7.1.1",
"version": "8.0.0",
"description": "An interface over BIP-32 and BIP-39 key derivation paths",
"homepage": "https://github.com/MetaMask/key-tree#readme",
"bugs": {
Expand Down

0 comments on commit 8b04a9b

Please sign in to comment.