From 3da414e0ef55fbcd72ae222f3ff610eee39dd2ed Mon Sep 17 00:00:00 2001 From: holgerd77 Date: Thu, 19 Dec 2019 12:10:14 +0100 Subject: [PATCH 1/2] Updated ethereumjs-common to v1.5.0 (MuirGlacier support) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 536e634..bfb3b14 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "author": "mjbecze ", "license": "MPL-2.0", "dependencies": { - "ethereumjs-common": "^1.3.1", + "ethereumjs-common": "^1.5.0", "ethereumjs-util": "^6.0.0" }, "devDependencies": { From 6f8f14aa890e2d91e922ceff4e1234abee456583 Mon Sep 17 00:00:00 2001 From: holgerd77 Date: Thu, 19 Dec 2019 13:13:44 +0100 Subject: [PATCH 2/2] Bumped version to v2.1.2, added CHANGELOG entry, updated README --- CHANGELOG.md | 7 +++++++ README.md | 4 ++++ package.json | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84c121c..6f9207a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ 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.1.2] - 2019-12-19 + +- Added support for the `MuirGlacier` HF by updating the `ethereumjs-common` dependency + to [v1.5.0](https://github.com/ethereumjs/ethereumjs-common/releases/tag/v1.5.0) + +[2.1.2]: https://github.com/ethereumjs/ethereumjs-tx/compare/v2.1.1...v2.1.2 + ## [2.1.1] - 2019-08-30 - Added support for `Istanbul` reduced non-zero call data gas prices diff --git a/README.md b/README.md index 3d97781..38cd487 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,10 @@ using an object with `chain` and `hardfork` names. You can see en example of thi The second option is by passing the option `common` set to an instance of [ethereumjs-common](https://github.com/ethereumjs/ethereumjs-common)' Common. This is specially useful for custom networks or chains/hardforks not yet supported by `ethereumjs-common`. You can see en example of this in [./examples/custom-chain-tx.ts](./examples/custom-chain-tx.ts). +## MuirGlacier Support + +The `MuirGlacier` hardfork is supported by the library since the `v2.1.2` release. + ## Istanbul Support Support for reduced non-zero call data gas prices from the `Istanbul` hardfork diff --git a/package.json b/package.json index bfb3b14..868c104 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ethereumjs-tx", - "version": "2.1.1", + "version": "2.1.2", "description": "A simple module for creating, manipulating and signing Ethereum transactions", "main": "dist/index.js", "types": "dist/index.d.ts",