Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 2b7cf1c

Browse files
committed
v4.16.0 release
1 parent 926044b commit 2b7cf1c

File tree

8 files changed

+38
-14
lines changed

8 files changed

+38
-14
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2802,7 +2802,7 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
28022802

28032803
- Fix Contract methods input param type any[] (#7340)
28042804

2805-
## [Unreleased]
2805+
## [4.16.0]
28062806

28072807
### Fixed
28082808

@@ -2813,3 +2813,11 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
28132813
#### web3-utils
28142814

28152815
- Make `fromWei` return "0" when input is `0` (#7387)
2816+
2817+
### Removed
2818+
2819+
#### web3-eth-accounts
2820+
2821+
- Move signature related types to web3-types. Re-export them for backwards compatibility. (#7374)
2822+
2823+
## [Unreleased]

packages/web3-eth-accounts/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,10 @@ Documentation:
189189

190190
- `hashMessage` now has a new optional param `skipPrefix` with a default value of `false`. A new function `signRaw` was added to sign a message without prefix. (#7346)
191191

192-
## [Unreleased]
192+
## [4.3.1]
193193

194194
### Removed
195195

196196
- Move signature related types to web3-types. Re-export them for backwards compatibility. (#7374)
197+
198+
## [Unreleased]

packages/web3-eth-accounts/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-eth-accounts",
3-
"version": "4.3.0",
3+
"version": "4.3.1",
44
"description": "Package for managing Ethereum accounts and signing",
55
"main": "./lib/commonjs/index.js",
66
"module": "./lib/esm/index.js",
@@ -62,8 +62,8 @@
6262
"crc-32": "^1.2.2",
6363
"ethereum-cryptography": "^2.0.0",
6464
"web3-errors": "^1.3.0",
65-
"web3-types": "^1.9.0",
66-
"web3-utils": "^4.3.2",
65+
"web3-types": "^1.10.0",
66+
"web3-utils": "^4.3.3",
6767
"web3-validator": "^2.0.6"
6868
}
6969
}

packages/web3-utils/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,10 @@ Documentation:
240240

241241
- fix `padRight` validation failure on large `uint` (#7265)
242242

243-
## [Unreleased]
243+
## [4.3.3]
244244

245245
### Fixed
246246

247247
- Make `fromWei` return "0" when input is `0` (#7387)
248+
249+
## [Unreleased]

packages/web3-utils/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "web3-utils",
33
"sideEffects": false,
4-
"version": "4.3.2",
4+
"version": "4.3.3",
55
"description": "Collection of utility functions used in web3.js.",
66
"main": "./lib/commonjs/index.js",
77
"module": "./lib/esm/index.js",
@@ -66,7 +66,7 @@
6666
"ethereum-cryptography": "^2.0.0",
6767
"eventemitter3": "^5.0.1",
6868
"web3-errors": "^1.3.0",
69-
"web3-types": "^1.8.1",
69+
"web3-types": "^1.10.0",
7070
"web3-validator": "^2.0.6"
7171
}
7272
}

packages/web3/CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,10 +560,22 @@ Documentation:
560560

561561
- Fix Contract methods input param type any[] (#7340)
562562

563-
## [Unreleased]
563+
## [4.16.0]
564564

565565
### Fixed
566566

567567
#### web3
568568

569569
- Export Web3Account, Wallet and signature related types. (#7374)
570+
571+
#### web3-utils
572+
573+
- Make `fromWei` return "0" when input is `0` (#7387)
574+
575+
### Removed
576+
577+
#### web3-eth-accounts
578+
579+
- Move signature related types to web3-types. Re-export them for backwards compatibility. (#7374)
580+
581+
## [Unreleased]

packages/web3/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3",
3-
"version": "4.15.0",
3+
"version": "4.16.0",
44
"description": "Ethereum JavaScript API",
55
"main": "./lib/commonjs/index.js",
66
"module": "./lib/esm/index.js",
@@ -90,7 +90,7 @@
9090
"web3-errors": "^1.3.0",
9191
"web3-eth": "^4.11.0",
9292
"web3-eth-abi": "^4.4.0",
93-
"web3-eth-accounts": "^4.3.0",
93+
"web3-eth-accounts": "^4.3.1",
9494
"web3-eth-contract": "^4.7.1",
9595
"web3-eth-ens": "^4.4.0",
9696
"web3-eth-iban": "^4.0.7",
@@ -100,8 +100,8 @@
100100
"web3-providers-ws": "^4.0.8",
101101
"web3-rpc-methods": "^1.3.0",
102102
"web3-rpc-providers": "^1.0.0-rc.3",
103-
"web3-types": "^1.9.0",
104-
"web3-utils": "^4.3.2",
103+
"web3-types": "^1.10.0",
104+
"web3-utils": "^4.3.3",
105105
"web3-validator": "^2.0.6"
106106
}
107107
}

packages/web3/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.15.0' };
1+
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.16.0' };

0 commit comments

Comments
 (0)