Skip to content

Commit fe3d186

Browse files
authored
Merge pull request #123 from LFDT-web3j/bump-4.14.1-SNAPSHOT
Bump 4.14.1 snapshot
2 parents b955915 + 4bc9940 commit fe3d186

File tree

7 files changed

+28
-14
lines changed

7 files changed

+28
-14
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Build Workflow Dispatch
1818
uses: convictional/[email protected]
1919
with:
20-
owner: hyperledger-web3j
20+
owner: LFDT-web3j
2121
repo: web3j-evm
2222
github_token: ${{ secrets.GITHUB_TOKEN }}
2323
workflow_file_name: build.yml

CHANGELOG.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,21 @@
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.14.0]() (Upcoming)
6+
# [4.14.1]() (Upcoming)
7+
8+
### Bug Fixes
9+
10+
*
11+
12+
### Features
13+
14+
* bump snapshot version to 4.14.1 [#123](https://github.com/hyperledger-web3j/web3j-evm/pull/123)
15+
16+
### BREAKING CHANGES
17+
18+
*
19+
20+
# [4.14.0](https://github.com/LFDT-web3j/web3j-evm/releases/tag/v4.14.0) (2025-04-10)
721

822
### Bug Fixes
923

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ repositories {
2727
}
2828
2929
dependencies {
30-
implementation "org.web3j:core:4.13.0"
31-
implementation "org.web3j:web3j-evm:4.13.0"
30+
implementation "org.web3j:core:4.14.0"
31+
implementation "org.web3j:web3j-evm:4.14.0"
3232
}
3333
```
3434

build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ plugins {
66
id 'com.diffplug.spotless' version '6.25.0'
77
id 'io.codearte.nexus-staging' version '0.30.0'
88
id 'de.marcphilipp.nexus-publish' version '0.4.0'
9-
id 'org.jetbrains.kotlin.jvm' version '1.9.24'
9+
id 'org.jetbrains.kotlin.jvm' version '2.1.0'
1010
id 'de.undercouch.download' version '4.1.2'
1111
}
1212

1313
description 'Web3j-evm extension'
1414

1515
ext {
16-
web3jVersion = '4.13.0'
16+
web3jVersion = '4.14.1-SNAPSHOT'
1717
log4jVersion = '2.23.1'
1818
guavaVersion = '33.2.0-jre'
1919
jacksonVersion = '2.10.0'
2020
klaxonVersion = '5.6'
21-
kotlinVersion = '1.9.24'
21+
kotlinVersion = '2.1.0'
2222
besuPluginVersion = '25.2.1'
2323
besuInternalVersion = '25.2.1'
2424
besuInternalCryptoVersion = '23.1.3'
@@ -37,7 +37,7 @@ apply {
3737
'junit'
3838
].each { buildScript ->
3939
download {
40-
src "https://raw.githubusercontent.com/hyperledger-web3j/web3j-build-tools/main/gradle/$buildScript/build.gradle"
40+
src "https://raw.githubusercontent.com/LFDT-web3j/web3j-build-tools/main/gradle/$buildScript/build.gradle"
4141
dest "$rootDir/gradle/$buildScript/build.gradle"
4242
overwrite false
4343
quiet true

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
kotlin.code.style=official
22
group=org.web3j
3-
version=4.13.1-SNAPSHOT
3+
version=4.14.1-SNAPSHOT

gradle/publish/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ publishing {
4848
slug = project.rootProjectOverride
4949
}
5050

51-
url = "https://github.com/hyperledger-web3j/$slug"
52-
connection = "scm:https://github.com/hyperledger-web3j/${slug}.git"
53-
developerConnection = "scm:git://github.com/hyperledger-web3j/${slug}.git"
51+
url = "https://github.com/LFDT-web3j/$slug"
52+
connection = "scm:https://github.com/LFDT-web3j/${slug}.git"
53+
developerConnection = "scm:git://github.com/LFDT-web3j/${slug}.git"
5454
}
5555

5656
developers {

gradle/spotless/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ apply plugin: 'com.diffplug.spotless'
33
apply plugin: "de.undercouch.download"
44

55
task downloadJavaLicense(type: Download) {
6-
src 'https://raw.githubusercontent.com/hyperledger-web3j/web3j-build-tools/main/gradle/spotless/java.license'
6+
src 'https://raw.githubusercontent.com/LFDT-web3j/web3j-build-tools/main/gradle/spotless/java.license'
77
dest new File("$rootDir/gradle/spotless",'java.license')
88
quiet true
99
onlyIfModified true
1010
}
1111

1212

1313
task downloadFormatterProperties(type: Download) {
14-
src 'https://raw.githubusercontent.com/hyperledger-web3j/web3j-build-tools/main/gradle/spotless/formatter.properties'
14+
src 'https://raw.githubusercontent.com/LFDT-web3j/web3j-build-tools/main/gradle/spotless/formatter.properties'
1515
dest new File("$rootDir/gradle/spotless",'formatter.properties')
1616
quiet true
1717
onlyIfModified true

0 commit comments

Comments
 (0)