-
Notifications
You must be signed in to change notification settings - Fork 781
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Block -> Beta 2 Release: updated CHANGELOG, bumped version, updated upstream dependency versions * Blockchain -> Beta 2 Release: updated CHANGELOG, bumped version, updated upstream dependency versions * Common -> Beta 2 Release: updated CHANGELOG, bumped version, updated upstream dependency versions * Devp2p -> Beta 2 Release: updated CHANGELOG, bumped version, updated upstream dependency versions * Ethash -> Beta 2 Release: updated CHANGELOG, bumped version, updated upstream dependency versions * EVM -> Beta 2 Release: updated CHANGELOG, bumped version, updated upstream dependency versions * RLP -> Beta 2 Release: updated CHANGELOG, bumped version, updated upstream dependency versions * StateManager -> Beta 2 Release: updated CHANGELOG, bumped version, updated upstream dependency versions * Trie -> Beta 2 Release: updated CHANGELOG, bumped version, updated upstream dependency versions * Tx -> Beta 2 Release: updated CHANGELOG, bumped version, updated upstream dependency versions * Util -> Beta 2 Release: updated CHANGELOG, bumped version, updated upstream dependency versions * VM -> Beta 2 Release: updated CHANGELOG, bumped version, updated upstream dependency versions * Client -> Release: bumped version to v0.6.0, added CHANGELOG entry, updated README * Client: Minor Merge README updates * Apply suggestions from code review Co-authored-by: acolytec3 <[email protected]> * Devp2p, Trie: added missing CHANGELOG entries Co-authored-by: acolytec3 <[email protected]>
- Loading branch information
Showing
28 changed files
with
610 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@ethereumjs/block", | ||
"version": "4.0.0-beta.1", | ||
"version": "4.0.0-beta.2", | ||
"description": "Provides Block serialization and help functions", | ||
"license": "MPL-2.0", | ||
"author": "mjbecze ([email protected])", | ||
|
@@ -29,12 +29,12 @@ | |
"test:browser": "karma start karma.conf.js" | ||
}, | ||
"dependencies": { | ||
"@ethereumjs/common": "3.0.0-beta.1", | ||
"@ethereumjs/trie": "5.0.0-beta.1", | ||
"@ethereumjs/tx": "4.0.0-beta.1", | ||
"@ethereumjs/util": "8.0.0-beta.1", | ||
"@ethereumjs/common": "3.0.0-beta.2", | ||
"@ethereumjs/trie": "5.0.0-beta.2", | ||
"@ethereumjs/tx": "4.0.0-beta.2", | ||
"@ethereumjs/util": "8.0.0-beta.2", | ||
"ethereum-cryptography": "^1.1.2", | ||
"rlp": "4.0.0-beta.1" | ||
"rlp": "4.0.0-beta.2" | ||
}, | ||
"devDependencies": { | ||
"@types/lru-cache": "^5.1.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@ethereumjs/blockchain", | ||
"version": "6.0.0-beta.1", | ||
"version": "6.0.0-beta.2", | ||
"description": "A module to store and interact with blocks", | ||
"license": "MPL-2.0", | ||
"keywords": [ | ||
|
@@ -29,18 +29,18 @@ | |
}, | ||
"author": "mjbecze <[email protected]>", | ||
"dependencies": { | ||
"@ethereumjs/block": "4.0.0-beta.1", | ||
"@ethereumjs/common": "3.0.0-beta.1", | ||
"@ethereumjs/ethash": "2.0.0-beta.1", | ||
"@ethereumjs/trie": "5.0.0-beta.1", | ||
"@ethereumjs/util": "8.0.0-beta.1", | ||
"@ethereumjs/block": "4.0.0-beta.2", | ||
"@ethereumjs/common": "3.0.0-beta.2", | ||
"@ethereumjs/ethash": "2.0.0-beta.2", | ||
"@ethereumjs/trie": "5.0.0-beta.2", | ||
"@ethereumjs/util": "8.0.0-beta.2", | ||
"abstract-level": "^1.0.3", | ||
"debug": "^4.3.3", | ||
"ethereum-cryptography": "^1.1.2", | ||
"level": "^8.0.0", | ||
"lru-cache": "^5.1.1", | ||
"memory-level": "^1.0.0", | ||
"rlp": "4.0.0-beta.1", | ||
"rlp": "4.0.0-beta.2", | ||
"semaphore-async-await": "^1.5.1" | ||
}, | ||
"devDependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@ethereumjs/client", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "EthereumJS client implementation", | ||
"license": "MPL-2.0", | ||
"author": "Vinay Pulim ([email protected])", | ||
|
@@ -50,17 +50,17 @@ | |
}, | ||
"dependencies": { | ||
"@chainsafe/libp2p-noise": "^4.1.1", | ||
"@ethereumjs/block": "4.0.0-beta.1", | ||
"@ethereumjs/blockchain": "6.0.0-beta.1", | ||
"@ethereumjs/common": "3.0.0-beta.1", | ||
"@ethereumjs/devp2p": "5.0.0-beta.1", | ||
"@ethereumjs/evm": "1.0.0-beta.1", | ||
"@ethereumjs/ethash": "2.0.0-beta.1", | ||
"@ethereumjs/statemanager": "1.0.0-beta.1", | ||
"@ethereumjs/trie": "5.0.0-beta.1", | ||
"@ethereumjs/tx": "4.0.0-beta.1", | ||
"@ethereumjs/util": "8.0.0-beta.1", | ||
"@ethereumjs/vm": "6.0.0-beta.1", | ||
"@ethereumjs/block": "4.0.0-beta.2", | ||
"@ethereumjs/blockchain": "6.0.0-beta.2", | ||
"@ethereumjs/common": "3.0.0-beta.2", | ||
"@ethereumjs/devp2p": "5.0.0-beta.2", | ||
"@ethereumjs/evm": "1.0.0-beta.2", | ||
"@ethereumjs/ethash": "2.0.0-beta.2", | ||
"@ethereumjs/statemanager": "1.0.0-beta.2", | ||
"@ethereumjs/trie": "5.0.0-beta.2", | ||
"@ethereumjs/tx": "4.0.0-beta.2", | ||
"@ethereumjs/util": "8.0.0-beta.2", | ||
"@ethereumjs/vm": "6.0.0-beta.2", | ||
"abstract-level": "^1.0.3", | ||
"body-parser": "^1.19.2", | ||
"chalk": "^4.1.2", | ||
|
@@ -85,7 +85,7 @@ | |
"multiaddr": "^10.0.1", | ||
"peer-id": "^0.14.3", | ||
"qheap": "^1.4.0", | ||
"rlp": "4.0.0-beta.1", | ||
"rlp": "4.0.0-beta.2", | ||
"winston": "^3.3.3", | ||
"winston-daily-rotate-file": "^4.5.5", | ||
"yargs": "^17.2.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.