diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e3fe677e..8b8b1b94f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,40 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.11.2]() (Upcoming) + +### Bug Fixes + +* + +### Features + +* + +### BREAKING CHANGES + +* + + +# [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 diff --git a/build.gradle b/build.gradle index fb2cd67ec..7b4afd569 100644 --- a/build.gradle +++ b/build.gradle @@ -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' diff --git a/core/src/main/java/org/web3j/protocol/core/methods/response/Transaction.java b/core/src/main/java/org/web3j/protocol/core/methods/response/Transaction.java index 8762ac08e..9f7ceff8f 100644 --- a/core/src/main/java/org/web3j/protocol/core/methods/response/Transaction.java +++ b/core/src/main/java/org/web3j/protocol/core/methods/response/Transaction.java @@ -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; } diff --git a/gradle.properties b/gradle.properties index 9d860ce66..444f99882 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ group=org.web3j -version=4.11.1-SNAPSHOT +version=4.11.2-SNAPSHOT