Skip to content
This repository was archived by the owner on Jun 17, 2021. It is now read-only.

Commit 58c2476

Browse files
authored
Merge pull request #253 from ethereumjs/new-release
New release v7.0.2
2 parents 806b2b2 + 37c3727 commit 58c2476

3 files changed

Lines changed: 25 additions & 3 deletions

File tree

CHANGELOG.md

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

9+
## [7.0.2] - 2020-05-25
10+
11+
This patch release re-establishes the state of `v7.0.0` release and upgrades
12+
the `BN.js` re-export version back to `v5` since quick patches for both
13+
the `v5` ([v5.1.2](https://github.com/indutny/bn.js/releases/tag/v5.1.2)) and
14+
the `v4` branch ([v4.11.9](https://github.com/indutny/bn.js/releases/tag/v4.11.9))
15+
have been released to fix interoperability issues between the `BN.js` versions.
16+
17+
This now makes it possible to move to the latest `BN.js` `v5` version and profit
18+
from future upgrades and patches.
19+
20+
An upgrade is highly recommended, the `v7.0.1` release will be marked as
21+
deprecated along this release.
22+
23+
See: Issue [#250](https://github.com/ethereumjs/ethereumjs-util/issues/250)
24+
25+
[7.0.2]: https://github.com/ethereumjs/ethereumjs-util/compare/v7.0.1...v7.0.2
26+
927
## [7.0.1] - 2020-05-15
1028

29+
[DEPRECATED in favour of v7.0.2]
30+
1131
This patch release downgrades the re-exported `BN.js` version from `v5` to
1232
`v4` (so a continuation of what has being used within the `v6.x` versions).
1333
This is due to some unexpected interoperability problems in libraries using
@@ -22,6 +42,8 @@ See: Issue [#250](https://github.com/ethereumjs/ethereumjs-util/issues/250)
2242

2343
## [7.0.0] - 2020-04-30
2444

45+
[DEPRECATED in favour of v7.0.1]
46+
2547
This release comes with significant changes to the API, updated versions of
2648
the core crypto libraries and substantial developer improvements in the form
2749
of a refactored test suite and API documentation.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The following methods are available provided by [ethjs-util](https://github.com/
7070

7171
Additionally `ethereumjs-util` re-exports a few commonly-used libraries. These include:
7272

73-
- [BN.js](https://github.com/indutny/bn.js) (version `4.x`)
73+
- [BN.js](https://github.com/indutny/bn.js) (version `5.x`)
7474
- [rlp](https://github.com/ethereumjs/rlp) (version `2.x`)
7575

7676
# EthereumJS

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ethereumjs-util",
3-
"version": "7.0.1",
3+
"version": "7.0.2",
44
"description": "a collection of utility functions for Ethereum",
55
"main": "dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -90,7 +90,7 @@
9090
"homepage": "https://github.com/ethereumjs/ethereumjs-util",
9191
"dependencies": {
9292
"@types/bn.js": "^4.11.3",
93-
"bn.js": "^4.11.8",
93+
"bn.js": "^5.1.2",
9494
"create-hash": "^1.1.2",
9595
"ethjs-util": "0.1.6",
9696
"keccak": "^3.0.0",

0 commit comments

Comments
 (0)