Skip to content

Commit

Permalink
bump snapshot version to 4.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
NickSneo committed Mar 15, 2024
1 parent 13015e5 commit 03972f6
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 3 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.11.1](https://github.com/web3j/web3j/releases/tag/v4.11.1) (2024-03-14)

### Bug Fixes

* fix versionedHashes to blobVersionedHashes [#2009](https://github.com/web3j/web3j/pull/2009)
* Fix typos [#2010](https://github.com/web3j/web3j/pull/2010)

### Features

* **EIP-4844:** Calculate baseFeePerBlobGas value and other EIP4844 changes [#2006](https://github.com/web3j/web3j/pull/2006)
* **EIP-4788:** add parentBeaconBlockRoot field [#2007](https://github.com/web3j/web3j/pull/2007)
* Add function to link binary with reference libraries in wrappers contract deployment [#1988](https://github.com/web3j/web3j/pull/1988)
* Added files for repo migration [#2011](https://github.com/web3j/web3j/pull/2011)

### BREAKING CHANGES

* NIL


# [4.11.0](https://github.com/web3j/web3j/compare/v4.10.3...v4.11.0) (2024-02-14)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ ext {
// test dependencies
equalsverifierVersion = '3.14.1'
junitVersion = '5.5.2'
web3jUnitVersion = '4.11.0'
web3jUnitVersion = '4.11.1'
junitBenchmarkVersion = '0.7.2'
logbackVersion = '1.4.14'
mockitoJunitVersion = '3.1.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,11 @@ public int hashCode() {
+ (getMaxFeePerBlobGasRaw() != null
? getMaxFeePerBlobGasRaw().hashCode()
: 0);
result = 31 * result + (getBlobVersionedHashes() != null ? getBlobVersionedHashes().hashCode() : 0);
result =
31 * result
+ (getBlobVersionedHashes() != null
? getBlobVersionedHashes().hashCode()
: 0);
result = 31 * result + (getAccessList() != null ? getAccessList().hashCode() : 0);
return result;
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group=org.web3j
version=4.11.1-SNAPSHOT
version=4.11.2-SNAPSHOT

0 comments on commit 03972f6

Please sign in to comment.