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

Commit f4cd11f

Browse files
authored
Merge pull request #173 from ethereumjs/new-release-v211
New release v2.1.1
2 parents ad75b65 + 8880d6b commit f4cd11f

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,15 @@ 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.0] - 2018-06-28
9+
## [2.1.1] - 2019-08-30
10+
11+
- Added support for `Istanbul` reduced non-zero call data gas prices
12+
([EIP-2028](https://eips.ethereum.org/EIPS/eip-2028)),
13+
PR [#171](https://github.com/ethereumjs/ethereumjs-tx/pull/171)
14+
15+
[2.1.1]: https://github.com/ethereumjs/ethereumjs-tx/compare/v2.1.0...v2.1.1
16+
17+
## [2.1.0] - 2019-06-28
1018

1119
**Using testnets and custom/private networks is now easier**
1220

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@ 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+
## Istanbul Support
49+
50+
Support for reduced non-zero call data gas prices from the `Istanbul` hardfork
51+
([EIP-2028](https://eips.ethereum.org/EIPS/eip-2028)) has been added to the library
52+
along with the `v2.1.1` release.
53+
4854
# EIP-155 support
4955

5056
`EIP-155` replay protection is activated since the `spuriousDragon` hardfork. To disable it, set the

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ethereumjs-tx",
3-
"version": "2.1.0",
4-
"description": "An simple module for creating, manipulating and signing ethereum transactions",
3+
"version": "2.1.1",
4+
"description": "A simple module for creating, manipulating and signing Ethereum transactions",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"files": [

0 commit comments

Comments
 (0)