diff --git a/CHANGELOG.md b/CHANGELOG.md index fd6b402..999cfe3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,17 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [0.6.0] - 2018-10-11 +Parameter support for the ``Constantinople`` hardfork (see ``hardforks/constantinople.json``): +- Added ``SSTORE`` gas/refund prices (``EIP-1283``), PR [#27](https://github.com/ethereumjs/ethereumjs-common/pull/27) +- Added Block Reward Adjustment (``EIP-1234``), PR [#26](https://github.com/ethereumjs/ethereumjs-common/pull/26) + +[0.6.0]: https://github.com/ethereumjs/ethereumjs-common/compare/v0.5.0...v0.6.0 + ## [0.5.0] - 2018-08-27 - Introduces **support for private chains** by allowing to pass a custom dictionary as the ``chain`` parameter in the constructor or the ``setChain()`` method as an alternative to just passing one of the predefined ``chain`` ``String`` names (e.g. ``mainnet``, ``ropsten``), PR [#24](https://github.com/ethereumjs/ethereumjs-common/pull/24) - [0.5.0]: https://github.com/ethereumjs/ethereumjs-common/compare/v0.4.1...v0.5.0 diff --git a/README.md b/README.md index d96e129..b045127 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ library supported: - ``tangerineWhistle`` - ``spuriousDragon`` - ``byzantium`` -- ``constantinople`` (Draft) +- ``constantinople`` - ``hybridCasper`` (Draft) diff --git a/hardforks/constantinople.json b/hardforks/constantinople.json index a1f0a05..04f81e2 100644 --- a/hardforks/constantinople.json +++ b/hardforks/constantinople.json @@ -1,6 +1,6 @@ { "name": "constantinople", - "comment": "Future hardfork with new instructions and protocol changes", + "comment": "Hardfork with new instructions and protocol changes", "eip": { "url": "https://eips.ethereum.org/EIPS/eip-1013", "status": "Draft" diff --git a/package.json b/package.json index 6c00d4b..8631d74 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ethereumjs-common", - "version": "0.5.0", + "version": "0.6.0", "description": "Resources common to all Ethereum implementations", "main": "index.js", "scripts": {