Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump version #106

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading