diff --git a/CHANGELOG.md b/CHANGELOG.md index e1fde7a8f..fd65c7623 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Pending +## 1.5.0 + ### Update: - feat: change `XdrElement` interface to public. ([#694](https://github.com/stellar/java-stellar-sdk/pull/694)) diff --git a/android_test/app/build.gradle.kts b/android_test/app/build.gradle.kts index 522b782d6..f52b89d76 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.4.0.jar")) + implementation(files("libs/stellar-sdk-1.5.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 70c9196ec..3dba343c0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "network.lightsail" -version = "1.4.0" +version = "1.5.0" java { sourceCompatibility = JavaVersion.VERSION_1_8 diff --git a/examples/build.gradle.kts b/examples/build.gradle.kts index ba366884b..120de8fbe 100644 --- a/examples/build.gradle.kts +++ b/examples/build.gradle.kts @@ -22,7 +22,7 @@ spotless { dependencies { // Use https://central.sonatype.com/artifact/network.lightsail/stellar-sdk in prod. - implementation("network.lightsail:stellar-sdk:1.4.0") + implementation("network.lightsail:stellar-sdk:1.5.0") testImplementation(platform("org.junit:junit-bom:5.10.0")) testImplementation("org.junit.jupiter:junit-jupiter") } diff --git a/readme.md b/readme.md index 8eac44d9a..fe9e056af 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.4.0 + 1.5.0 ``` ### Gradle ```groovy -implementation 'network.lightsail:stellar-sdk:1.4.0' +implementation 'network.lightsail:stellar-sdk:1.5.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).