From 8e39807e22c7aff6695126a830622dc7a12f060f Mon Sep 17 00:00:00 2001 From: Nischal Sharma Date: Thu, 2 May 2024 15:03:55 +0530 Subject: [PATCH] release 4.11.3 (#84) Signed-off-by: Nischal Sharma --- .github/CODEOWNERS | 2 +- .github/PULL_REQUEST_TEMPLATE.md | 5 +++++ .github/workflows/build.yml | 4 ++-- CHANGELOG.md | 5 +++-- build.gradle | 4 ++-- gradle.properties | 2 +- gradle/spotless/build.gradle | 4 ++-- 7 files changed, 16 insertions(+), 10 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index fcd531c..e72f50d 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @conor10 @iikirilov \ No newline at end of file +* @conor10 @gtebrean @NickSneo \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 9594b66..188a143 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -7,3 +7,8 @@ ### Why is it needed? *required* +## Checklist + +- [ ] I've read the contribution guidelines. +- [ ] I've added tests (if applicable). +- [ ] I've added a changelog entry if necessary. \ No newline at end of file diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 03ff393..6795a5a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,9 +2,9 @@ name: Build on: push: - branches: [ master ] + branches: [ main ] pull_request: - branches: [ master ] + branches: [ main ] workflow_dispatch: jobs: diff --git a/CHANGELOG.md b/CHANGELOG.md index 95845e0..d0db9b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -# [4.11.3]() (Upcoming) +# [4.11.3](https://github.com/web3j/web3j-gradle-plugin/releases/tag/v4.11.3) (2024-05-02) ### Bug Fixes @@ -11,7 +11,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Features -* +* Use Gradle 8 compatible API [#83](https://github.com/hyperledger/web3j-gradle-plugin/pull/83) +* Release 4.11.3 and updated Web3j to v4.11.3 [#84](https://github.com/hyperledger/web3j-gradle-plugin/pull/84) ### BREAKING CHANGES diff --git a/build.gradle b/build.gradle index 9a2566f..5e47eeb 100644 --- a/build.gradle +++ b/build.gradle @@ -25,7 +25,7 @@ apply { 'spotless', ].each { buildScript -> download { - src "https://raw.githubusercontent.com/web3j/build-tools/master/gradle/$buildScript/build.gradle" + src "https://raw.githubusercontent.com/hyperledger/web3j-build-tools/main/gradle/$buildScript/build.gradle" dest "$rootDir/gradle/$buildScript/build.gradle" overwrite true quiet true @@ -67,7 +67,7 @@ dependencies { gradlePlugin { website = 'https://web3j.io/' - vcsUrl = 'https://github.com/web3j/web3j-gradle-plugin' + vcsUrl = 'https://github.com/hyperledger/web3j-gradle-plugin' plugins { web3j { description = 'Gradle plugin providing tasks to generate web3j contracts from Solidity.' diff --git a/gradle.properties b/gradle.properties index c9dba91..e0141f6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ group=org.web3j -version=4.11.2 +version=4.11.3 org.gradle.caching=true org.gradle.parallel=true solidityPluginVersion=0.4.0 diff --git a/gradle/spotless/build.gradle b/gradle/spotless/build.gradle index 9dd2d47..2b7440a 100644 --- a/gradle/spotless/build.gradle +++ b/gradle/spotless/build.gradle @@ -3,14 +3,14 @@ apply plugin: 'com.diffplug.gradle.spotless' apply plugin: "de.undercouch.download" task downloadJavaLicense(type: Download) { - src 'https://raw.githubusercontent.com/web3j/build-tools/master/gradle/spotless/java.license' + src 'https://raw.githubusercontent.com/hyperledger/web3j-build-tools/main/gradle/spotless/java.license' dest new File("$rootDir/gradle/spotless",'java.license') quiet true onlyIfModified true } task downloadFormatterProperties(type: Download) { - src 'https://raw.githubusercontent.com/web3j/build-tools/master/gradle/spotless/formatter.properties' + src 'https://raw.githubusercontent.com/hyperledger/web3j-build-tools/main/gradle/spotless/formatter.properties' dest new File("$rootDir/gradle/spotless",'formatter.properties') quiet true onlyIfModified true