Skip to content

Commit

Permalink
Merge pull request #106 from web3j/release_1.5.3
Browse files Browse the repository at this point in the history
bump version to 1.5.3
  • Loading branch information
gtebrean authored Mar 28, 2024
2 parents d54dc27 + ae571a1 commit 1b5c0bc
Show file tree
Hide file tree
Showing 16 changed files with 39 additions and 22 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.5.3](https://github.com/web3j/web3j-cli/releases/tag/v1.5.3) (2024-03-28)

### Bug Fixes

* Removed JCDP (failing in windows 11) and updated with Jansi [#105](https://github.com/web3j/web3j-cli/pull/105)

### Features

* Updated web3j to latest version 4.11.2 [#106](https://github.com/web3j/web3j-cli/pull/106)
* Migrate to hyperledger repo structure [#102](https://github.com/web3j/web3j-cli/pull/102)
* Added support for creating ERC-721 project [#101](https://github.com/web3j/web3j-cli/pull/101)

### BREAKING CHANGES

* NIL

# [1.5.2](https://github.com/web3j/web3j-cli/releases/tag/v1.5.2) (2024-02-24)

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import java.text.SimpleDateFormat

plugins {
id 'org.jetbrains.kotlin.jvm' version '1.6.21'
id 'org.jetbrains.kotlin.jvm' version '1.8.10'
id "application"
id "distribution"
id "idea"
id "jacoco"
id "com.github.johnrengelman.shadow" version "5.2.0"
id "com.diffplug.gradle.spotless" version "3.25.0"
id "de.undercouch.download" version "4.0.0"
id "de.undercouch.download" version "4.1.2"
id "de.marcphilipp.nexus-publish" version "0.4.0"
id 'io.codearte.nexus-staging' version '0.21.1'
id "com.jfrog.bintray" version "1.8.4"
Expand All @@ -19,7 +19,7 @@ mainClassName = 'org.web3j.console.Web3j'
applicationName = 'web3j'

ext {
web3jVersion = '4.11.0'
web3jVersion = '4.11.2'
picocli = '4.6.0'
slf4jVersion = '1.7.30'
junitVersion = '5.8.2'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=1.5.2
version=1.5.3
group=org.web3j.console
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ public void run() {
jsonFileLocation.getAbsolutePath(),
destinationDirLocation.getAbsolutePath(),
basePackageName,
useJavaNativeTypes)
useJavaNativeTypes,
true)
.generate();
} catch (Exception e) {
Console.exitError(e);
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/project/build.gradle.template
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id 'org.jetbrains.kotlin.jvm' version '1.8.10'
id 'application'
id "com.github.johnrengelman.shadow" version "5.2.0"
id 'org.web3j' version '4.11.0'
id 'org.web3j' version '4.11.2'
}


Expand All @@ -30,7 +30,7 @@ node {
}

ext {
web3jVersion = '4.11.0'
web3jVersion = '4.11.2'
logbackVersion = '1.4.14'
klaxonVersion = '5.5'
besuPluginVersion = '24.1.1'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "org.web3j.openapi" version "4.11.0"
id "org.web3j.openapi" version "4.11.2"
}

group '<package_name>'
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/project/build.gradleImport.template
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id 'org.jetbrains.kotlin.jvm' version '1.8.10'
id 'application'
id "com.github.johnrengelman.shadow" version "5.2.0"
id 'org.web3j' version '4.11.0'
id 'org.web3j' version '4.11.2'
}


Expand Down Expand Up @@ -33,7 +33,7 @@ ext {
besuPluginVersion = '24.1.1'
besuInternalVersion = '24.1.1'
besuInternalCryptoVersion = '23.1.3'
web3jVersion = '4.11.0'
web3jVersion = '4.11.2'
logbackVersion = '1.4.14'
klaxonVersion = '5.5'
besuCryptoDepVersion = '0.8.3'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "org.web3j.openapi" version "4.11.0"
id "org.web3j.openapi" version "4.11.2"
}

group '<package_name>'
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/project/build.gradleJarOpenApi.template
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "org.web3j.openapi" version "4.11.0"
id "org.web3j.openapi" version "4.11.2"
id "com.github.johnrengelman.shadow" version "5.2.0"
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/project/build.gradleOpenApi.template
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "org.web3j.openapi" version "4.11.0"
id "org.web3j.openapi" version "4.11.2"
}

group '<package_name>'
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/project/erc20/build.gradleErc20.template
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id 'org.jetbrains.kotlin.jvm' version '1.8.10'
id 'application'
id "com.github.johnrengelman.shadow" version "5.2.0"
id 'org.web3j' version '4.11.0'
id 'org.web3j' version '4.11.2'
}

group '<package_name>'
Expand All @@ -29,7 +29,7 @@ node {
}

ext {
web3jVersion = '4.11.0'
web3jVersion = '4.11.2'
logbackVersion = '1.4.14'
klaxonVersion = '5.5'
besuPluginVersion = '24.1.1'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "org.web3j.openapi" version "4.11.0"
id "org.web3j.openapi" version "4.11.2"
}

group '<package_name>'
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/project/erc721/build.gradleErc721.template
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id 'org.jetbrains.kotlin.jvm' version '1.8.10'
id 'application'
id "com.github.johnrengelman.shadow" version "5.2.0"
id 'org.web3j' version '4.11.0'
id 'org.web3j' version '4.11.2'
}

group '<package_name>'
Expand All @@ -29,7 +29,7 @@ node {
}

ext {
web3jVersion = '4.11.0'
web3jVersion = '4.11.2'
logbackVersion = '1.4.14'
klaxonVersion = '5.5'
besuPluginVersion = '24.1.1'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "org.web3j.openapi" version "4.11.0"
id "org.web3j.openapi" version "4.11.2"
}

group '<package_name>'
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/project/erc777/build.gradleErc777.template
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id 'org.jetbrains.kotlin.jvm' version '1.8.10'
id 'application'
id "com.github.johnrengelman.shadow" version "5.2.0"
id 'org.web3j' version '4.11.0'
id 'org.web3j' version '4.11.2'
}

group '<package_name>'
Expand All @@ -30,7 +30,7 @@ node {
}

ext {
web3jVersion = '4.11.0'
web3jVersion = '4.11.2'
logbackVersion = '1.4.14'
klaxonVersion = '5.5'
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "org.web3j.openapi" version "4.11.0"
id "org.web3j.openapi" version "4.11.2"
}

group '<package_name>'
Expand Down

0 comments on commit 1b5c0bc

Please sign in to comment.