Skip to content

Commit

Permalink
web3 package version fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jdevcs committed Aug 24, 2022
1 parent 6637db2 commit 483464f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ Released with 1.0.0-beta.37 code base.
- Fix typos in web3-eth-accounts.rst & TESTING.md (#5047)
- Fix remove wallet using an index when an account address and address lowercase are equal (#5049)
- Improve README.md & Fix typos (#4848)
- Add optional hex formatting parameter for getTransactionrReceipt (#5153)
- Add optional hex formatting parameter for getTransactionReceipt (#5153)
- Fix transactionRoot -> transactionsRoot in BlockHeader (#5083)
- Fix Promise in Accounts.signTransaction() throwing errors that cannot be caught (#4724)
- Fixed unit tests & removed dead code for web3-providers-http (#5228)
Expand All @@ -602,7 +602,7 @@ Released with 1.0.0-beta.37 code base.

## [Unreleased]

## [4.0.0-alpha.1]
## [4.0.0-alpha.0]

### Added

Expand Down
2 changes: 1 addition & 1 deletion packages/web3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3",
"version": "4.0.0-alpha.1",
"version": "4.0.0-alpha.0",
"description": "Ethereum JavaScript API",
"main": "dist/index.js",
"browser": "dist/web3.min.js",
Expand Down
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.0.0-alpha.1' };
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.0.0-alpha.0' };

0 comments on commit 483464f

Please sign in to comment.