Skip to content

Commit 5fb23ad

Browse files
authored
Merge pull request #1109 from ethereumjs/new-tx-release
New Tx Release v3.0.2
2 parents 761bef0 + 22a96f3 commit 5fb23ad

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

packages/block/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"dependencies": {
4242
"@ethereumjs/common": "^2.0.0",
4343
"merkle-patricia-tree": "^4.0.0",
44-
"@ethereumjs/tx": "^3.0.0",
44+
"@ethereumjs/tx": "^3.0.2",
4545
"@types/bn.js": "^4.11.6",
4646
"ethereumjs-util": "^7.0.8"
4747
},

packages/devp2p/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"@ethereumjs/config-coverage": "^2.0.0",
7676
"@ethereumjs/config-typescript": "^2.0.0",
7777
"@ethereumjs/eslint-config-defaults": "^2.0.0",
78-
"@ethereumjs/tx": "^3.0.0",
78+
"@ethereumjs/tx": "^3.0.2",
7979
"@types/async": "^2.4.1",
8080
"@types/chalk": "^2.2.0",
8181
"@types/debug": "^4.1.4",

packages/tx/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
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+
10+
## 3.0.2 - 2021-02-16
11+
12+
Follow-up release on `v3.0.1` which only partly addressed a **critical** bug. An update is - again - strongly recommended.
13+
14+
- Fixes `tx.isSigned()` always returning true when using the `Tx.fromValuesArray()` static constructor, see PR [#1077](https://github.com/ethereumjs/ethereumjs-monorepo/pull/1077)
15+
916
## 3.0.1 - 2021-01-20
1017

1118
- Fixes `tx.isSigned()` always returning true - so also for unsigned transactions - due to a bug in the `Transaction` class constructor. This bug is regarded as **critical** and an update is strongly recommended. See PR [#1042](https://github.com/ethereumjs/ethereumjs-monorepo/pull/1042)

packages/tx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ethereumjs/tx",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "A simple module for creating, manipulating and signing Ethereum transactions",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

packages/vm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"@ethereumjs/blockchain": "^5.0.0",
4848
"@ethereumjs/common": "^2.0.0",
4949
"merkle-patricia-tree": "^4.0.0",
50-
"@ethereumjs/tx": "^3.0.0",
50+
"@ethereumjs/tx": "^3.0.2",
5151
"async-eventemitter": "^0.2.4",
5252
"core-js-pure": "^3.0.1",
5353
"debug": "^2.2.0",

0 commit comments

Comments
 (0)