Skip to content

Commit

Permalink
Merge pull request #108 from web3j/bump-4.11.2-SNAPSHOT
Browse files Browse the repository at this point in the history
Bump 4.11.2 snapshot
  • Loading branch information
gtebrean authored Mar 18, 2024
2 parents 44916f3 + 089bad8 commit 8d9e694
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.11.1](https://github.com/web3j/web3j-openapi/releases/tag/v4.11.1) (2024-03-18)

### Bug Fixes

* NIL

### Features

* Bump version to 4.11.1 [#108](https://github.com/web3j/web3j-openapi/pull/108)

### BREAKING CHANGES

* NIL


# [4.11.0](https://github.com/web3j/web3j-openapi/releases/tag/v4.11.0) (2024-02-18)

### Bug Fixes
Expand Down
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ object GeneratorUtils {

fun AbiDefinition.sanitizedName(wrapperCall: Boolean = false): String {
return when (true) {
name == null -> "" // Case of a constructor
(name == null) -> "" // Case of a constructor
wrapperCall -> name.substringBefore("&")
else -> name.replace("&", "")
}
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
group=org.web3j.openapi
version=4.11.0-SNAPSHOT
group=org.web3j
version=4.11.2-SNAPSHOT
kotlin.code.style=official
kotlin.caching.enabled=true
kotlin.incremental=true
kotlinVersion=1.6.21
kotlinVersion=1.8.10
org.gradle.caching=true
org.gradle.parallel=true

0 comments on commit 8d9e694

Please sign in to comment.