diff --git a/CHANGELOG.md b/CHANGELOG.md index 09ef5ea..46073fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.43.0 +* Bump `java-stellar-sdk` from 0.42.0 to 0.43.0 + ## 0.42.0 * Bump `java-stellar-sdk` from 0.41.1 to 0.42.0 diff --git a/android_test/app/build.gradle.kts b/android_test/app/build.gradle.kts index ed60871..6ed344d 100644 --- a/android_test/app/build.gradle.kts +++ b/android_test/app/build.gradle.kts @@ -67,7 +67,7 @@ dependencies { implementation("androidx.compose.ui:ui-tooling-preview") implementation("androidx.compose.material3:material3") implementation(files("libs/stellar-sdk-android-spi.jar")) - implementation("com.github.stellar:java-stellar-sdk:0.42.0") + implementation("com.github.stellar:java-stellar-sdk:0.43.0") testImplementation("junit:junit:4.13.2") androidTestImplementation("androidx.test.uiautomator:uiautomator:2.3.0-alpha03") diff --git a/build.gradle.kts b/build.gradle.kts index cfecebe..91daa6b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ plugins { } group = "stellar" -version = "0.42.0" +version = "0.43.0" java { sourceCompatibility = JavaVersion.VERSION_1_8 @@ -29,7 +29,7 @@ repositories { } dependencies { - implementation("com.github.stellar:java-stellar-sdk:0.42.0") + implementation("com.github.stellar:java-stellar-sdk:0.43.0") } tasks {