diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fd3f5f97..27dcb0314 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## Pending +## 1.1.0 + +In this release, we have significantly simplified the process of using the Java SDK to interact with Soroban contracts. +You can now use stellar-contract-bindings to generate Java bindings for contracts and invoke them. +Please visit [the GitHub repository](https://github.com/lightsail-network/stellar-contract-bindings) of stellar-contract-bindings for more information. + +### Update +- feat: add `ContractClient` to simplify contract calls. ([#675](https://github.com/stellar/java-stellar-sdk/pull/675)) + ## 1.0.0 We are excited to announce the release of version 1.0.0 of the Java Stellar SDK! diff --git a/android_test/app/build.gradle.kts b/android_test/app/build.gradle.kts index e60b60e10..f1f6720be 100644 --- a/android_test/app/build.gradle.kts +++ b/android_test/app/build.gradle.kts @@ -68,7 +68,7 @@ dependencies { implementation("androidx.compose.material3:material3") // Since we are adding local jar(libs/stellar-sdk.jar) as dependency, // gradle cannot automatically download the required third-party dependencies. - implementation(files("libs/stellar-sdk-1.0.0.jar")) + implementation(files("libs/stellar-sdk-1.1.0.jar")) implementation("com.squareup.okhttp3:okhttp:4.11.0") implementation("com.squareup.okhttp3:okhttp-sse:4.11.0") implementation("com.moandjiezana.toml:toml4j:0.7.2") diff --git a/build.gradle.kts b/build.gradle.kts index fcfeb0c3f..5692d0266 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "network.lightsail" -version = "1.0.0" +version = "1.1.0" java { sourceCompatibility = JavaVersion.VERSION_1_8 diff --git a/readme.md b/readme.md index 2090cebbe..2cb009056 100644 --- a/readme.md +++ b/readme.md @@ -14,13 +14,13 @@ The Java Stellar SDK library provides APIs to build transactions and connect to network.lightsail stellar-sdk - 1.0.0 + 1.1.0 ``` ### Gradle ```groovy -implementation 'network.lightsail:stellar-sdk:1.0.0' +implementation 'network.lightsail:stellar-sdk:1.1.0' ``` You can find instructions on how to install this dependency using alternative package managers [here](https://central.sonatype.com/artifact/network.lightsail/stellar-sdk).