Skip to content
This repository was archived by the owner on Oct 30, 2024. It is now read-only.

Commit af0afbe

Browse files
committed
Merge branch 'v0.6.x' into v0-removing-native-js-dependencies
2 parents bbed4a4 + e747921 commit af0afbe

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ node_js:
55
- "10"
66
- "12"
77
- "14"
8-
env:
9-
- CXX=g++-4.8
108
addons:
119
apt:
1210
sources:

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
(modification: no type change headlines) and this project adheres to
66
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [0.6.4] - 2020-05-01
9+
10+
This is the last release from the `v0.6.x` release series. It adds Node 12 compatibility while maintaining compatibility
11+
down to Node 6. To be able to do so the `scrypt.js` key derivation library is exchanged with `scryptsy`. While this solution is backwards-compatible the changed library only provides a pure JS implementation and no native bindings. If you need native performance pin your dependency to `v0.6.3` or update to the `v1.0.0` library version to be released shortly after this release.
12+
13+
Change Summary:
14+
15+
- v0.6.x back patch: added node v12 support, switched to `scryptsy` key derivation library (pure JS implementation),
16+
PR [#114](https://github.com/ethereumjs/ethereumjs-wallet/pull/114)
17+
- Updated `hdkey` to `v1.1.1`,
18+
PR [#87](https://github.com/ethereumjs/ethereumjs-wallet/pull/87)
19+
- Refactored `decipherBuffer()`,
20+
PR [#82](https://github.com/ethereumjs/ethereumjs-wallet/pull/82)
21+
- Added more tests for `Wallet.fromEthSale()`,
22+
PR [#80](https://github.com/ethereumjs/ethereumjs-wallet/pull/80)
23+
24+
[0.6.4]: https://github.com/ethereumjs/ethereumjs-wallet/compare/v0.6.3...v0.6.4
825

926
## [0.6.3] - 2018-12-19
1027
- Fixed installation errors for certain packaging tools, PR [#67](https://github.com/ethereumjs/ethereumjs-wallet/pull/67)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ethereumjs-wallet",
3-
"version": "0.6.3",
3+
"version": "0.6.4",
44
"description": "Utilities for handling Ethereum keys",
55
"main": "index.js",
66
"files": [

0 commit comments

Comments
 (0)