File tree 7 files changed +16
-10
lines changed
7 files changed +16
-10
lines changed Original file line number Diff line number Diff line change 1
- * @ conor10 @ iikirilov
1
+ * @ conor10 @ gtebrean @ NickSneo
Original file line number Diff line number Diff line change 7
7
### Why is it needed?
8
8
* required*
9
9
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.
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ name: Build
2
2
3
3
on :
4
4
push :
5
- branches : [ master ]
5
+ branches : [ main ]
6
6
pull_request :
7
- branches : [ master ]
7
+ branches : [ main ]
8
8
workflow_dispatch :
9
9
10
10
jobs :
Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file.
4
4
See [ Conventional Commits] ( https://conventionalcommits.org ) for commit guidelines.
5
5
6
- # [ 4.11.3] ( ) (Upcoming )
6
+ # [ 4.11.3] ( https://github.com/web3j/web3j-gradle-plugin/releases/tag/v4.11.3 ) (2024-05-02 )
7
7
8
8
### Bug Fixes
9
9
10
10
*
11
11
12
12
### Features
13
13
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 )
15
16
16
17
### BREAKING CHANGES
17
18
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ apply {
25
25
' spotless' ,
26
26
]. each { buildScript ->
27
27
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"
29
29
dest " $rootDir /gradle/$buildScript /build.gradle"
30
30
overwrite true
31
31
quiet true
@@ -67,7 +67,7 @@ dependencies {
67
67
68
68
gradlePlugin {
69
69
website = ' https://web3j.io/'
70
- vcsUrl = ' https://github.com/web3j /web3j-gradle-plugin'
70
+ vcsUrl = ' https://github.com/hyperledger /web3j-gradle-plugin'
71
71
plugins {
72
72
web3j {
73
73
description = ' Gradle plugin providing tasks to generate web3j contracts from Solidity.'
Original file line number Diff line number Diff line change 1
1
group =org.web3j
2
- version =4.11.2
2
+ version =4.11.3
3
3
org.gradle.caching =true
4
4
org.gradle.parallel =true
5
5
solidityPluginVersion =0.4.0
Original file line number Diff line number Diff line change @@ -3,14 +3,14 @@ apply plugin: 'com.diffplug.gradle.spotless'
3
3
apply plugin : " de.undercouch.download"
4
4
5
5
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'
7
7
dest new File (" $rootDir /gradle/spotless" ,' java.license' )
8
8
quiet true
9
9
onlyIfModified true
10
10
}
11
11
12
12
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'
14
14
dest new File (" $rootDir /gradle/spotless" ,' formatter.properties' )
15
15
quiet true
16
16
onlyIfModified true
You can’t perform that action at this time.
0 commit comments