Skip to content

Commit bd6b10a

Browse files
committed
Bumped version to v4.1.2, added CHANGELOG entry, updated README
1 parent 08a9d5e commit bd6b10a

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,31 @@ 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+
## [4.1.2] - 2019-12-19
10+
11+
Release adds support for the `MuirGlacier` hardfork by updating relevant
12+
dependencies:
13+
14+
- `ethereumjs-tx`:
15+
[v2.1.2](https://github.com/ethereumjs/ethereumjs-tx/releases/tag/v2.1.2)
16+
- `ethereumjs-block`:
17+
[v2.2.2](https://github.com/ethereumjs/ethereumjs-block/releases/tag/v2.2.2)
18+
- `ethereumjs-blockchain`:
19+
[v4.0.3](https://github.com/ethereumjs/ethereumjs-blockchain/releases/tag/v4.0.3)
20+
- `ethereumjs-common`:
21+
[v1.5.0](https://github.com/ethereumjs/ethereumjs-common/releases/tag/v1.5.0)
22+
23+
Other changes:
24+
25+
- Upgraded `ethereumjs-util` to `v6.2.0`,
26+
PR [#621](https://github.com/ethereumjs/ethereumjs-vm/pull/621)
27+
- Removed outdated cb param definition in `runBlockchain`,
28+
PR [#623](https://github.com/ethereumjs/ethereumjs-vm/pull/623)
29+
- Properly output zero balance in `examples/run-transactions-complete`,
30+
PR [#624](https://github.com/ethereumjs/ethereumjs-vm/pull/624)
31+
32+
[4.1.2]: https://github.com/ethereumjs/ethereumjs-vm/compare/v4.1.1...v4.1.2
33+
934
## [4.1.1] - 2019-11-19
1035

1136
First stable `Istanbul` release passing all `StateTests` and `BlockchainTests`

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,16 @@ The VM currently supports the following hardfork rules:
1717
- `Constantinople`
1818
- `Petersburg` (default)
1919
- `Istanbul`
20+
- `MuirGlacier` (only `mainnet` and `ropsten`)
2021

2122
If you are still looking for a [Spurious Dragon](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-607.md) compatible version of this library install the latest of the `2.2.x` series (see [Changelog](./CHANGELOG.md)).
2223

24+
##### MuirGlacier Hardfork Support
25+
26+
An Ethereum test suite compliant `MuirGlacier` HF implementation is available
27+
since the `v4.1.2` VM release. You can activate a `MuirGlacier` VM by using the
28+
`muirGlacier` `hardfork` option flag.
29+
2330
##### Istanbul Harfork Support
2431

2532
An Ethereum test suite compliant `Istanbul` HF implementation is available

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ethereumjs-vm",
3-
"version": "4.1.1",
3+
"version": "4.1.2",
44
"description": "An Ethereum VM implementation",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)