Skip to content

Commit 5a357a2

Browse files
authored
Merge pull request ethereumjs#204 from ethereumjs/pre-byzantium-release
[Pre-Byzantium Release] v2.2.2
2 parents 41805d7 + 2f9d34d commit 5a357a2

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
88
## [2.3.0] - Unreleased
99
- TODO
1010

11+
## [2.2.2] - 2017-09-19
12+
- Fixed [JS number issues](https://github.com/ethereumjs/ethereumjs-vm/pull/168)
13+
and [certain edge cases](https://github.com/ethereumjs/ethereumjs-vm/pull/188)
14+
- Fixed various smaller bugs and improved code consistency
15+
- Some VM speedups
16+
- Testing improvements
17+
- Narrowed down dependencies for library not to break after Byzantium release
18+
1119
## [2.2.1] - 2017-08-04
1220
- Fixed bug prevent the library to be used in the browser
1321

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ test:
88
override:
99
# testVM disabled.
1010
# - case $CIRCLE_NODE_INDEX in 0) npm run lint ;; 1) npm run testVM ;; 2) npm run testState ;; 3) npm run testBlockchain ;; esac:
11-
- case $CIRCLE_NODE_INDEX in 0) npm run lint ;; 1) npm run testState ;; esac:
11+
- case $CIRCLE_NODE_INDEX in 0) npm run testState ;; esac:
1212
parallel: true

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "ethereumjs-vm",
3-
"version": "2.2.1",
3+
"version": "2.2.2",
44
"description": "an ethereum VM implementation",
55
"main": "index.js",
66
"dependencies": {
77
"async": "^2.1.2",
88
"async-eventemitter": "^0.2.2",
99
"ethereum-common": "0.1.0",
1010
"ethereumjs-account": "^2.0.3",
11-
"ethereumjs-block": "^1.2.2",
11+
"ethereumjs-block": "~1.6.0",
1212
"ethereumjs-util": "4.5.0",
1313
"fake-merkle-patricia-tree": "^1.0.1",
1414
"functional-red-black-tree": "^1.0.1",
@@ -18,15 +18,15 @@
1818
"devDependencies": {
1919
"babel-preset-es2015": "^6.24.0",
2020
"babelify": "^7.3.0",
21-
"ethereumjs-blockchain": "^1.4.1",
21+
"ethereumjs-blockchain": "~2.0.0",
2222
"ethereumjs-testing": "https://github.com/ethereumjs/ethereumjs-testing",
2323
"ethereumjs-tx": "1.3.3",
2424
"level": "^1.4.0",
2525
"leveldown": "^1.4.6",
2626
"levelup": "^1.3.2",
2727
"memdown": "^1.1.0",
2828
"minimist": "^1.1.1",
29-
"standard": "^5.2.2",
29+
"standard": "^10.0.0",
3030
"tape": "^4.2.0"
3131
},
3232
"browserify": {

0 commit comments

Comments
 (0)