From 65afce83f528a3909deb2ed638be11454875eeb4 Mon Sep 17 00:00:00 2001 From: holgerd77 Date: Mon, 13 Aug 2018 14:52:58 +0200 Subject: [PATCH] Bumped version to v3.2.0, added CHANGELOG entry --- CHANGELOG.md | 8 ++++++++ package.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 770abe6..796b9e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ 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). +## [3.2.0] - 2018-08-13 +- Added support for setting network and performing hardfork-specific validation by integrating with [ethereumjs-common](https://github.com/ethereumjs/ethereumjs-common), PR [#59](https://github.com/ethereumjs/ethereumjs-blockchain/pull/59) +- Added ``Blockchain.putHeader()`` and ``Blockchain.putHeaders()`` functions to provide header-chain functionality (needed by ethereumjs-client), PR [#59](https://github.com/ethereumjs/ethereumjs-blockchain/pull/59) +- Fixed a bug with caching, PR [#59](https://github.com/ethereumjs/ethereumjs-blockchain/pull/59) +- Fixed error propagation in ``Blockchain.iterator()``, PR [#60](https://github.com/ethereumjs/ethereumjs-blockchain/pull/60) + +[3.2.0]: https://github.com/ethereumjs/ethereumjs-blockchain/compare/v3.1.0...v3.2.0 + ## [3.1.0] - 2018-05-24 - New ``getLatestHeader()`` and ``getLatestBlock()`` methods for retrieving the latest header respectively full block in the canonical chain, PR [#52](https://github.com/ethereumjs/ethereumjs-blockchain/pull/52) diff --git a/package.json b/package.json index 785bcfb..039efe8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ethereumjs-blockchain", - "version": "3.1.0", + "version": "3.2.0", "description": "A module to store and interact with blocks", "main": "index.js", "scripts": {