Skip to content

Commit

Permalink
update changelog and package.json for release
Browse files Browse the repository at this point in the history
  • Loading branch information
luu-alex committed Feb 8, 2024
1 parent 9f31612 commit 22c773f
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 11 deletions.
6 changes: 4 additions & 2 deletions packages/web3-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,10 @@ Documentation:
- Interface `MetaMaskProvider` added and is part of `SupportedProviders` (#6534)
- `gasPrice` was added to `Transaction1559UnsignedAPI` type. (#6539)

## [Unreleased]
## [1.4.0]

### Added

- Adds missing exported type `AbiItem` from 1.x to v4 for compatabiltiy (#6678)
- Adds missing exported type `AbiItem` from 1.x to v4 for compatabiltiy (#6678)

## [Unreleased]
2 changes: 1 addition & 1 deletion packages/web3-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-types",
"version": "1.3.1",
"version": "1.4.0",
"description": "Provide the common data structures and interfaces for web3 modules.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down
6 changes: 4 additions & 2 deletions packages/web3-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,10 @@ Documentation:

- Fixed an issue with detecting Uint8Array (#6486)

## [Unreleased]
## [4.2.0]

### Added

- Adds missing exported type `AbiItem` from 1.x to v4 for compatabiltiy (#6678)
- Adds missing exported type `AbiItem` from 1.x to v4 for compatabiltiy (#6678)

## [Unreleased]
4 changes: 2 additions & 2 deletions packages/web3-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "web3-utils",
"sideEffects": false,
"version": "4.1.1",
"version": "4.2.0",
"description": "Collection of utility functions used in web3.js.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -65,7 +65,7 @@
"dependencies": {
"ethereum-cryptography": "^2.0.0",
"web3-errors": "^1.1.4",
"web3-types": "^1.3.1",
"web3-types": "^1.4.0",
"web3-validator": "^2.0.4"
}
}
4 changes: 4 additions & 0 deletions packages/web3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,4 +187,8 @@ Documentation:

- Dependencies updated ( details are in root changelog )

## [4.5.0]

- Dependencies updated ( details are in root changelog )

## [Unreleased]
6 changes: 3 additions & 3 deletions packages/web3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3",
"version": "4.4.0",
"version": "4.5.0",
"description": "Ethereum JavaScript API",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -99,8 +99,8 @@
"web3-providers-http": "^4.1.0",
"web3-providers-ws": "^4.0.7",
"web3-rpc-methods": "^1.1.4",
"web3-types": "^1.3.1",
"web3-utils": "^4.1.1",
"web3-types": "^1.4.0",
"web3-utils": "^4.2.0",
"web3-validator": "^2.0.4"
}
}
2 changes: 1 addition & 1 deletion packages/web3/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.4.0' };
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.5.0' };

1 comment on commit 22c773f

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: 22c773f Previous: 6c075db Ratio
processingTx 9236 ops/sec (±4.49%) 9301 ops/sec (±4.81%) 1.01
processingContractDeploy 41263 ops/sec (±6.30%) 39129 ops/sec (±7.62%) 0.95
processingContractMethodSend 19638 ops/sec (±7.98%) 19443 ops/sec (±5.19%) 0.99
processingContractMethodCall 40630 ops/sec (±5.75%) 38971 ops/sec (±6.34%) 0.96
abiEncode 46036 ops/sec (±7.11%) 44252 ops/sec (±6.92%) 0.96
abiDecode 31370 ops/sec (±9.45%) 30419 ops/sec (±8.89%) 0.97
sign 1625 ops/sec (±4.80%) 1656 ops/sec (±4.08%) 1.02
verify 380 ops/sec (±0.61%) 373 ops/sec (±0.78%) 0.98

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.