Skip to content

Commit 8e39807

Browse files
authored
release 4.11.3 (#84)
Signed-off-by: Nischal Sharma <[email protected]>
1 parent c98501d commit 8e39807

File tree

7 files changed

+16
-10
lines changed

7 files changed

+16
-10
lines changed

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @conor10 @iikirilov
1+
* @conor10 @gtebrean @NickSneo

.github/PULL_REQUEST_TEMPLATE.md

+5
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,8 @@
77
### Why is it needed?
88
*required*
99

10+
## Checklist
11+
12+
- [ ] I've read the contribution guidelines.
13+
- [ ] I've added tests (if applicable).
14+
- [ ] I've added a changelog entry if necessary.

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Build
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ main ]
88
workflow_dispatch:
99

1010
jobs:

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@
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.3]() (Upcoming)
6+
# [4.11.3](https://github.com/web3j/web3j-gradle-plugin/releases/tag/v4.11.3) (2024-05-02)
77

88
### Bug Fixes
99

1010
*
1111

1212
### Features
1313

14-
*
14+
* Use Gradle 8 compatible API [#83](https://github.com/hyperledger/web3j-gradle-plugin/pull/83)
15+
* Release 4.11.3 and updated Web3j to v4.11.3 [#84](https://github.com/hyperledger/web3j-gradle-plugin/pull/84)
1516

1617
### BREAKING CHANGES
1718

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ apply {
2525
'spotless',
2626
].each { buildScript ->
2727
download {
28-
src "https://raw.githubusercontent.com/web3j/build-tools/master/gradle/$buildScript/build.gradle"
28+
src "https://raw.githubusercontent.com/hyperledger/web3j-build-tools/main/gradle/$buildScript/build.gradle"
2929
dest "$rootDir/gradle/$buildScript/build.gradle"
3030
overwrite true
3131
quiet true
@@ -67,7 +67,7 @@ dependencies {
6767

6868
gradlePlugin {
6969
website = 'https://web3j.io/'
70-
vcsUrl = 'https://github.com/web3j/web3j-gradle-plugin'
70+
vcsUrl = 'https://github.com/hyperledger/web3j-gradle-plugin'
7171
plugins {
7272
web3j {
7373
description = 'Gradle plugin providing tasks to generate web3j contracts from Solidity.'

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group=org.web3j
2-
version=4.11.2
2+
version=4.11.3
33
org.gradle.caching=true
44
org.gradle.parallel=true
55
solidityPluginVersion=0.4.0

gradle/spotless/build.gradle

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

55
task downloadJavaLicense(type: Download) {
6-
src 'https://raw.githubusercontent.com/web3j/build-tools/master/gradle/spotless/java.license'
6+
src 'https://raw.githubusercontent.com/hyperledger/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
task downloadFormatterProperties(type: Download) {
13-
src 'https://raw.githubusercontent.com/web3j/build-tools/master/gradle/spotless/formatter.properties'
13+
src 'https://raw.githubusercontent.com/hyperledger/web3j-build-tools/main/gradle/spotless/formatter.properties'
1414
dest new File("$rootDir/gradle/spotless",'formatter.properties')
1515
quiet true
1616
onlyIfModified true

0 commit comments

Comments
 (0)