Skip to content

Commit

Permalink
update versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
luu-alex committed Jul 10, 2024
1 parent bd7913b commit 7ef3a7f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2608,9 +2608,9 @@ If there are any bugs, improvements, optimizations or any new feature proposal f

- Update dependancies (#7109)

#### web3-rpc-providers
#### web3-plugin-example

- Change request return type `Promise<ResultType>` to `Promise<JsonRpcResponseWithResult<ResultType>>` (#7102)
- Dependencies updated

### Added

Expand Down
2 changes: 1 addition & 1 deletion packages/web3-rpc-providers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-rpc-providers",
"version": "1.1.0-rc.0",
"version": "1.0.0-rc.1",
"description": "Web3 Providers package",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/web3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
"web3-providers-http": "^4.1.0",
"web3-providers-ws": "^4.0.8",
"web3-rpc-methods": "^1.3.0",
"web3-rpc-providers": "^1.1.0-rc.0",
"web3-rpc-providers": "^1.0.0-rc.1",
"web3-types": "^1.7.0",
"web3-utils": "^4.3.1",
"web3-validator": "^2.0.6"
Expand Down
6 changes: 6 additions & 0 deletions tools/web3-plugin-example/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Transaction middleware (#7088)

## [1.1.1]

### Changed

- Dependencies updated

## [Unreleased]
10 changes: 5 additions & 5 deletions tools/web3-plugin-example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-plugin-example",
"version": "1.1.0",
"version": "1.1.2",
"description": "Example implementations of Web3.js' 4.x plugin system",
"repository": "https://github.com/ChainSafe/web3.js",
"engines": {
Expand Down Expand Up @@ -45,12 +45,12 @@
"prettier": "^2.7.1",
"ts-jest": "^29.1.1",
"typescript": "^4.7.4",
"web3": "^4.10.0",
"web3": "^4.11.0",
"web3-core": "^4.5.0",
"web3-eth-abi": "^4.2.2",
"web3-eth-contract": "^4.5.0",
"web3-eth-abi": "^4.2.3",
"web3-eth-contract": "^4.6.0",
"web3-types": "^1.7.0",
"web3-utils": "^4.3.0"
"web3-utils": "^4.3.1"
},
"peerDependencies": {
"web3-core": ">= 4.1.1 < 5",
Expand Down

1 comment on commit 7ef3a7f

@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: 7ef3a7f Previous: 89711ab Ratio
processingTx 8986 ops/sec (±3.89%) 9435 ops/sec (±3.67%) 1.05
processingContractDeploy 39528 ops/sec (±7.06%) 40686 ops/sec (±6.96%) 1.03
processingContractMethodSend 15926 ops/sec (±7.67%) 16574 ops/sec (±8.48%) 1.04
processingContractMethodCall 26417 ops/sec (±7.94%) 28430 ops/sec (±6.15%) 1.08
abiEncode 42173 ops/sec (±6.88%) 45419 ops/sec (±7.37%) 1.08
abiDecode 30524 ops/sec (±6.37%) 31557 ops/sec (±7.64%) 1.03
sign 1538 ops/sec (±0.93%) 1572 ops/sec (±3.54%) 1.02
verify 366 ops/sec (±0.60%) 375 ops/sec (±0.51%) 1.02

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

Please sign in to comment.