From fac29af47498563a0d6f00b444afba751c2fe5a0 Mon Sep 17 00:00:00 2001 From: holgerd77 Date: Wed, 20 Jun 2018 21:55:37 +0200 Subject: [PATCH 1/2] Added Node 6 and 10 to Travis build --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index e66f165..d69a3d2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,8 @@ language: node_js node_js: + - "6" - "8" + - "10" env: - CXX=g++-4.8 addons: @@ -18,9 +20,6 @@ env: matrix: fast_finish: true include: - - os: linux - node_js: "8" - env: CXX=g++-4.8 TEST_SUITE=test - os: linux node_js: "8" env: CXX=g++-4.8 TEST_SUITE=coveralls From 903004b9a6c90d6c0f35b804cd5e14068eb16892 Mon Sep 17 00:00:00 2001 From: holgerd77 Date: Wed, 20 Jun 2018 22:01:14 +0200 Subject: [PATCH 2/2] Bumped version to v0.4.0, added CHANGELOG entry --- CHANGELOG.md | 6 ++++++ package.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a45e86..0f00a55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ 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.4.0] - 2018-06-20 +- Remove leftover ...Gas postfix for some gas prices (e.g. ``ecAddGas`` -> ``ecAdd``) to + be consistent with overall gas price naming + +[0.4.0]: https://github.com/ethereumjs/ethereumjs-common/compare/v0.3.1...v0.4.0 + ## [0.3.1] - 2018-05-28 - Added two alias functions ``activeOnBlock()`` and ``gteHardfork()`` when hardfork is set for convenience, PR [#15](https://github.com/ethereumjs/ethereumjs-common/pull/15) - Added option to dynamically choose genesis state (see ``README``), PR [#15](https://github.com/ethereumjs/ethereumjs-common/pull/15) diff --git a/package.json b/package.json index ff2e4e0..bf19444 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ethereumjs-common", - "version": "0.3.1", + "version": "0.4.0", "description": "Resources common to all Ethereum implementations", "main": "index.js", "scripts": {