Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
gtebrean committed Feb 20, 2024
1 parent 0a13868 commit 0048e00
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ The easiest way to interact with the generated project is via the generated `Swa
Also, you can use our client implementation via adding the following dependency to your project:
```groovy
dependencies {
implementation "org.web3j.openapi:web3j-openapi-client:4.7.1"
implementation "org.web3j:web3j-openapi-client:4.11.1"
}
```

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.1-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 0048e00

Please sign in to comment.