diff --git a/CHANGELOG.md b/CHANGELOG.md index 142377e9..7f58f49e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -103,8 +103,12 @@ The following methods are now `Buffer`-only: #### Other Breaking Changes +- Added support for Node 14, + PR [#249](https://github.com/ethereumjs/ethereumjs-util/pull/249) - Dropped support for Node `8` along PR [#228](https://github.com/ethereumjs/ethereumjs-util/pull/228) +- Updated `BN.js` library re-export from `4.x` to `5.x`, + PR [#249], https://github.com/ethereumjs/ethereumjs-util/pull/249 - Removed `secp2561` re-export (use methods provided or import directly), PR [#228](https://github.com/ethereumjs/ethereumjs-util/pull/228) @@ -121,8 +125,6 @@ The `secp2561` ECDSA dependency has been updated from `3.0.1` to `4.0.1`. ### Developer Improvements -- Added support for Node 14, - PR [#249](https://github.com/ethereumjs/ethereumjs-util/pull/249) - Refactored test suite (module split-up, headless Firefox and Chrome), PR [#231](https://github.com/ethereumjs/ethereumjs-util/pull/231) - Moved CI from Travis to GitHub Actions, diff --git a/package.json b/package.json index c80f0064..5729af17 100644 --- a/package.json +++ b/package.json @@ -90,7 +90,7 @@ "homepage": "https://github.com/ethereumjs/ethereumjs-util", "dependencies": { "@types/bn.js": "^4.11.3", - "bn.js": "^4.11.0", + "bn.js": "^5.1.1", "create-hash": "^1.1.2", "ethjs-util": "0.1.6", "keccak": "^3.0.0",