Skip to content
This repository was archived by the owner on Apr 6, 2020. It is now read-only.

Commit a8da65a

Browse files
authored
Merge pull request #190 from ethereumjs/update-common-and-new-release
New release v2.1.2, updated Common dependency (MuirGlacier)
2 parents ba4ef9a + 6f8f14a commit a8da65a

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
(modification: no type change headlines) and this project adheres to
77
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).
88

9+
## [2.1.2] - 2019-12-19
10+
11+
- Added support for the `MuirGlacier` HF by updating the `ethereumjs-common` dependency
12+
to [v1.5.0](https://github.com/ethereumjs/ethereumjs-common/releases/tag/v1.5.0)
13+
14+
[2.1.2]: https://github.com/ethereumjs/ethereumjs-tx/compare/v2.1.1...v2.1.2
15+
916
## [2.1.1] - 2019-08-30
1017

1118
- Added support for `Istanbul` reduced non-zero call data gas prices

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ using an object with `chain` and `hardfork` names. You can see en example of thi
4545

4646
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).
4747

48+
## MuirGlacier Support
49+
50+
The `MuirGlacier` hardfork is supported by the library since the `v2.1.2` release.
51+
4852
## Istanbul Support
4953

5054
Support for reduced non-zero call data gas prices from the `Istanbul` hardfork

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ethereumjs-tx",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"description": "A simple module for creating, manipulating and signing Ethereum transactions",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -37,7 +37,7 @@
3737
"author": "mjbecze <mb@ethdev.com>",
3838
"license": "MPL-2.0",
3939
"dependencies": {
40-
"ethereumjs-common": "^1.3.1",
40+
"ethereumjs-common": "^1.5.0",
4141
"ethereumjs-util": "^6.0.0"
4242
},
4343
"devDependencies": {

0 commit comments

Comments
 (0)