Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 819e1e9

Browse files
authoredMar 18, 2024
Merge pull request #104 from web3j/revert-103-release_1.5.3
Revert "Release 1.5.3"
2 parents 4eb8cf4 + 05de79e commit 819e1e9

15 files changed

+21
-37
lines changed
 

‎CHANGELOG.md

-16
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,6 @@
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-
# [1.5.3](https://github.com/web3j/web3j-cli/releases/tag/v1.5.3) (2024-03-18)
7-
8-
### Bug Fixes
9-
10-
* NIL
11-
12-
### Features
13-
14-
* Updated web3j to latest version 4.11.1 [#103](https://github.com/web3j/web3j-cli/pull/103)
15-
* Add files for repository migration [#102](https://github.com/web3j/web3j-cli/pull/102)
16-
* Add support for ERC-721 project creation [#101](https://github.com/web3j/web3j-cli/pull/101)
17-
18-
### BREAKING CHANGES
19-
20-
* NIL
21-
226
# [1.5.2](https://github.com/web3j/web3j-cli/releases/tag/v1.5.2) (2024-02-24)
237

248
### Bug Fixes

‎build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import java.text.SimpleDateFormat
22

33
plugins {
4-
id 'org.jetbrains.kotlin.jvm' version '1.8.10'
4+
id 'org.jetbrains.kotlin.jvm' version '1.6.21'
55
id "application"
66
id "distribution"
77
id "idea"
88
id "jacoco"
99
id "com.github.johnrengelman.shadow" version "5.2.0"
1010
id "com.diffplug.gradle.spotless" version "3.25.0"
11-
id "de.undercouch.download" version "4.1.2"
11+
id "de.undercouch.download" version "4.0.0"
1212
id "de.marcphilipp.nexus-publish" version "0.4.0"
1313
id 'io.codearte.nexus-staging' version '0.21.1'
1414
id "com.jfrog.bintray" version "1.8.4"
@@ -19,7 +19,7 @@ mainClassName = 'org.web3j.console.Web3j'
1919
applicationName = 'web3j'
2020

2121
ext {
22-
web3jVersion = '4.11.1'
22+
web3jVersion = '4.11.0'
2323
picocli = '4.6.0'
2424
slf4jVersion = '1.7.30'
2525
junitVersion = '5.8.2'

‎gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=1.5.3
1+
version=1.5.2
22
group=org.web3j.console

‎src/main/resources/project/build.gradle.template

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id 'org.jetbrains.kotlin.jvm' version '1.8.10'
44
id 'application'
55
id "com.github.johnrengelman.shadow" version "5.2.0"
6-
id 'org.web3j' version '4.11.1'
6+
id 'org.web3j' version '4.11.0'
77
}
88

99

@@ -30,7 +30,7 @@ node {
3030
}
3131

3232
ext {
33-
web3jVersion = '4.11.1'
33+
web3jVersion = '4.11.0'
3434
logbackVersion = '1.4.14'
3535
klaxonVersion = '5.5'
3636
besuPluginVersion = '24.1.1'

‎src/main/resources/project/build.gradleGenerateOpenApi.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "org.web3j.openapi" version "4.11.1"
2+
id "org.web3j.openapi" version "4.11.0"
33
}
44

55
group '<package_name>'

‎src/main/resources/project/build.gradleImport.template

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id 'org.jetbrains.kotlin.jvm' version '1.8.10'
44
id 'application'
55
id "com.github.johnrengelman.shadow" version "5.2.0"
6-
id 'org.web3j' version '4.11.1'
6+
id 'org.web3j' version '4.11.0'
77
}
88

99

@@ -33,7 +33,7 @@ ext {
3333
besuPluginVersion = '24.1.1'
3434
besuInternalVersion = '24.1.1'
3535
besuInternalCryptoVersion = '23.1.3'
36-
web3jVersion = '4.11.1'
36+
web3jVersion = '4.11.0'
3737
logbackVersion = '1.4.14'
3838
klaxonVersion = '5.5'
3939
besuCryptoDepVersion = '0.8.3'

‎src/main/resources/project/build.gradleImportOpenApi.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "org.web3j.openapi" version "4.11.1"
2+
id "org.web3j.openapi" version "4.11.0"
33
}
44

55
group '<package_name>'

‎src/main/resources/project/build.gradleJarOpenApi.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "org.web3j.openapi" version "4.11.1"
2+
id "org.web3j.openapi" version "4.11.0"
33
id "com.github.johnrengelman.shadow" version "5.2.0"
44
}
55

‎src/main/resources/project/build.gradleOpenApi.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "org.web3j.openapi" version "4.11.1"
2+
id "org.web3j.openapi" version "4.11.0"
33
}
44

55
group '<package_name>'

‎src/main/resources/project/erc20/build.gradleErc20.template

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id 'org.jetbrains.kotlin.jvm' version '1.8.10'
44
id 'application'
55
id "com.github.johnrengelman.shadow" version "5.2.0"
6-
id 'org.web3j' version '4.11.1'
6+
id 'org.web3j' version '4.11.0'
77
}
88

99
group '<package_name>'
@@ -29,7 +29,7 @@ node {
2929
}
3030

3131
ext {
32-
web3jVersion = '4.11.1'
32+
web3jVersion = '4.11.0'
3333
logbackVersion = '1.4.14'
3434
klaxonVersion = '5.5'
3535
besuPluginVersion = '24.1.1'

‎src/main/resources/project/erc20/build.gradleOpenApiErc20.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "org.web3j.openapi" version "4.11.1"
2+
id "org.web3j.openapi" version "4.11.0"
33
}
44

55
group '<package_name>'

‎src/main/resources/project/erc721/build.gradleErc721.template

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id 'org.jetbrains.kotlin.jvm' version '1.8.10'
44
id 'application'
55
id "com.github.johnrengelman.shadow" version "5.2.0"
6-
id 'org.web3j' version '4.11.1'
6+
id 'org.web3j' version '4.11.0'
77
}
88

99
group '<package_name>'
@@ -29,7 +29,7 @@ node {
2929
}
3030

3131
ext {
32-
web3jVersion = '4.11.1'
32+
web3jVersion = '4.11.0'
3333
logbackVersion = '1.4.14'
3434
klaxonVersion = '5.5'
3535
besuPluginVersion = '24.1.1'

‎src/main/resources/project/erc721/build.gradleOpenApiErc721.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "org.web3j.openapi" version "4.11.1"
2+
id "org.web3j.openapi" version "4.11.0"
33
}
44

55
group '<package_name>'

‎src/main/resources/project/erc777/build.gradleErc777.template

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id 'org.jetbrains.kotlin.jvm' version '1.8.10'
44
id 'application'
55
id "com.github.johnrengelman.shadow" version "5.2.0"
6-
id 'org.web3j' version '4.11.1'
6+
id 'org.web3j' version '4.11.0'
77
}
88

99
group '<package_name>'
@@ -30,7 +30,7 @@ node {
3030
}
3131

3232
ext {
33-
web3jVersion = '4.11.1'
33+
web3jVersion = '4.11.0'
3434
logbackVersion = '1.4.14'
3535
klaxonVersion = '5.5'
3636
}

‎src/main/resources/project/erc777/build.gradleOpenApiErc777.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "org.web3j.openapi" version "4.11.1"
2+
id "org.web3j.openapi" version "4.11.0"
33
}
44

55
group '<package_name>'

0 commit comments

Comments
 (0)
Please sign in to comment.