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

New release v2.3.0 #216

Merged
merged 1 commit into from
Oct 11, 2017
Merged
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: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
(modification: no type change headlines) and this project adheres to
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [2.3.0] - Unreleased (``master`` branch)
## [2.3.0] - 2017-10-11
- ``Byzantium`` compatible
- New opcodes ``REVERT``, ``RETURNDATA`` and ``STATICCALL``
- Precompiles for curve operations and bigint mod exp
- Transaction return data in receipts
- Detailed list of changes in PR [#161](https://github.com/ethereumjs/ethereumjs-vm/pull/161)
- For detailed list of changes see PR [#161](https://github.com/ethereumjs/ethereumjs-vm/pull/161)
- For a ``Spurious Dragon``/``EIP 150`` compatible version of this library install latest version of ``2.2.x``

[2.3.0]: https://github.com/ethereumjs/ethereumjs-vm/compare/v2.2.2...v2.3.0

## [2.2.2] - 2017-09-19
- Fixed [JS number issues](https://github.com/ethereumjs/ethereumjs-vm/pull/168)
and [certain edge cases](https://github.com/ethereumjs/ethereumjs-vm/pull/188)
Expand All @@ -21,6 +23,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
- Testing improvements
- Narrowed down dependencies for library not to break after Byzantium release

[2.2.2]: https://github.com/ethereumjs/ethereumjs-vm/compare/v2.2.1...v2.2.2

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

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"name": "ethereumjs-vm",
"version": "2.2.2",
"version": "2.3.0",
"description": "an ethereum VM implementation",
"main": "index.js",
"dependencies": {
"async": "^2.1.2",
"async-eventemitter": "^0.2.2",
"ethereum-common": "https://github.com/ethereumjs/common",
"ethereum-common": "0.2.0",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Won't this break in the mean-time that the 0.2.0 is tagged on github, but not pushed to npm?

We can use git urls like git+https://github.com/ethereumjs/common.git#v0.2.0 instead.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm in the process of amending these release PRs to do exactly this.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: comment is outdated, this has been discussed on Gitter, leave npm versions, PRs just have to be merged/published on npm in given order.

"ethereumjs-account": "^2.0.3",
"ethereumjs-block": "https://github.com/ethereumjs/ethereumjs-block",
"ethereumjs-block": "~1.7.0",
"ethereumjs-util": "4.5.0",
"fake-merkle-patricia-tree": "^1.0.1",
"functional-red-black-tree": "^1.0.1",
"merkle-patricia-tree": "^2.1.2",
"rustbn.js": "https://github.com/ethereumjs/rustbn.js",
"rustbn.js": "~0.1.0",
"safe-buffer": "^5.1.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.0",
"babelify": "^7.3.0",
"ethereumjs-blockchain": "https://github.com/ethereumjs/ethereumjs-blockchain",
"ethereumjs-blockchain": "~2.1.0",
"ethereumjs-testing": "https://github.com/ethereumjs/ethereumjs-testing",
"ethereumjs-tx": "1.3.3",
"level": "^1.4.0",
Expand Down