Skip to content

Commit 30d5aab

Browse files
authored
Merge pull request #2170 from siladu/use-consensys-tuweni-2.7.0
Move to Consensys Tuweni fork v2.7.0
2 parents 920b998 + 181d010 commit 30d5aab

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1414
### Features
1515

1616
* bump snapshot version to 4.13.1 [#2160](https://github.com/hyperledger-web3j/web3j/pull/2160)
17+
* Upgrade to https://github.com/Consensys/tuweni/releases/tag/v2.7.0 [#2170](https://github.com/LFDT-web3j/web3j/pull/2170)
1718

1819

1920
### BREAKING CHANGES

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ ext {
2727
ensAdraffyVersion = '0.2.0'
2828
kzg4844Version = '2.0.0'
2929
awsSdkVersion = '2.27.24'
30-
tuweniVersion = '2.4.2'
30+
tuweniVersion = '2.7.0'
3131
// test dependencies
3232
equalsverifierVersion = '3.16.1'
3333
junitVersion = '5.5.2'

core/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ dependencies {
1919
"com.fasterxml.jackson.core:jackson-databind:$jacksonVersion",
2020
"org.slf4j:slf4j-api:$slf4jVersion",
2121
"io.github.adraffy:ens-normalize:$ensAdraffyVersion",
22-
"io.tmio:tuweni-bytes:$tuweniVersion",
23-
"io.tmio:tuweni-units:$tuweniVersion"
22+
"io.consensys.tuweni:tuweni-bytes:$tuweniVersion",
23+
"io.consensys.tuweni:tuweni-units:$tuweniVersion"
2424
implementation "software.amazon.awssdk:kms:$awsSdkVersion"
2525
testImplementation project(path: ':crypto', configuration: 'testArtifacts'),
2626
"nl.jqno.equalsverifier:equalsverifier:$equalsverifierVersion",

crypto/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ dependencies {
1111
"org.slf4j:slf4j-api:$slf4jVersion",
1212
"com.fasterxml.jackson.core:jackson-databind:$jacksonVersion",
1313
"io.consensys.protocols:jc-kzg-4844:$kzg4844Version"
14-
implementation("io.tmio:tuweni-bytes:$tuweniVersion")
15-
implementation("io.tmio:tuweni-units:$tuweniVersion")
14+
implementation("io.consensys.tuweni:tuweni-bytes:$tuweniVersion")
15+
implementation("io.consensys.tuweni:tuweni-units:$tuweniVersion")
1616
}
1717

1818
configurations { testArtifacts.extendsFrom testRuntime }

0 commit comments

Comments
 (0)