Skip to content

Commit d86b993

Browse files
authored
Merge pull request #2015 from web3j/bump-version-4.11.2
bump snapshot version to 4.11.2
2 parents 13015e5 + eb28aa3 commit d86b993

File tree

4 files changed

+41
-3
lines changed

4 files changed

+41
-3
lines changed

CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,40 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.11.2]() (Upcoming)
7+
8+
### Bug Fixes
9+
10+
*
11+
12+
### Features
13+
14+
*
15+
16+
### BREAKING CHANGES
17+
18+
*
19+
20+
21+
# [4.11.1](https://github.com/web3j/web3j/releases/tag/v4.11.1) (2024-03-14)
22+
23+
### Bug Fixes
24+
25+
* fix versionedHashes to blobVersionedHashes [#2009](https://github.com/web3j/web3j/pull/2009)
26+
* Fix typos [#2010](https://github.com/web3j/web3j/pull/2010)
27+
28+
### Features
29+
30+
* **EIP-4844:** Calculate baseFeePerBlobGas value and other EIP4844 changes [#2006](https://github.com/web3j/web3j/pull/2006)
31+
* **EIP-4788:** add parentBeaconBlockRoot field [#2007](https://github.com/web3j/web3j/pull/2007)
32+
* Add function to link binary with reference libraries in wrappers contract deployment [#1988](https://github.com/web3j/web3j/pull/1988)
33+
* Added files for repo migration [#2011](https://github.com/web3j/web3j/pull/2011)
34+
35+
### BREAKING CHANGES
36+
37+
* NIL
38+
39+
640
# [4.11.0](https://github.com/web3j/web3j/compare/v4.10.3...v4.11.0) (2024-02-14)
741

842
### Bug Fixes

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ext {
3030
// test dependencies
3131
equalsverifierVersion = '3.14.1'
3232
junitVersion = '5.5.2'
33-
web3jUnitVersion = '4.11.0'
33+
web3jUnitVersion = '4.11.1'
3434
junitBenchmarkVersion = '0.7.2'
3535
logbackVersion = '1.4.14'
3636
mockitoJunitVersion = '3.1.0'

core/src/main/java/org/web3j/protocol/core/methods/response/Transaction.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,11 @@ public int hashCode() {
615615
+ (getMaxFeePerBlobGasRaw() != null
616616
? getMaxFeePerBlobGasRaw().hashCode()
617617
: 0);
618-
result = 31 * result + (getBlobVersionedHashes() != null ? getBlobVersionedHashes().hashCode() : 0);
618+
result =
619+
31 * result
620+
+ (getBlobVersionedHashes() != null
621+
? getBlobVersionedHashes().hashCode()
622+
: 0);
619623
result = 31 * result + (getAccessList() != null ? getAccessList().hashCode() : 0);
620624
return result;
621625
}

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
group=org.web3j
2-
version=4.11.1-SNAPSHOT
2+
version=4.11.2-SNAPSHOT

0 commit comments

Comments
 (0)