Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor pre Byzantium release 2.2.2 to prevent 2.2.x breaking on ethereumjs-block update #189

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
## [2.3.0] - Unreleased
- TODO

## [2.2.2] - Unreleased
- Fixed issues with [handling large numbers](https://github.com/ethereumjs/ethereumjs-vm/issues/167)
and [certain edge cases](https://github.com/ethereumjs/ethereumjs-vm/pull/188)
- Fixed various smaller bugs and improved code consistency
- Some VM speedups
- Narrowed down ``ethereumjs-block`` dependency for ``2.2.x`` install still work
after Byzantium release

## [2.2.1] - 2017-08-04
- Fixed bug prevent the library to be used in the browser

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "ethereumjs-vm",
"version": "2.2.1",
"version": "2.2.2",
"description": "an ethereum VM implementation",
"main": "index.js",
"dependencies": {
"async": "^2.1.2",
"async-eventemitter": "^0.2.2",
"ethereum-common": "0.1.0",
"ethereumjs-account": "^2.0.3",
"ethereumjs-block": "^1.2.2",
"ethereumjs-block": "~1.6.0",
"ethereumjs-util": "4.5.0",
"fake-merkle-patricia-tree": "^1.0.1",
"functional-red-black-tree": "^1.0.1",
Expand Down