diff --git a/CHANGELOG.md b/CHANGELOG.md index 78b42a7f8..e2cb0ef83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,13 @@ ## Pending +## 2.2.0 + ### Update: -- feat: add `AUTH_CLAWBACK_ENABLED_FLAG` to `AccountFlag`. +- feat: add `AUTH_CLAWBACK_ENABLED_FLAG` to `AccountFlag`. ([#743](https://github.com/stellar/java-stellar-sdk/pull/743)) - fix: remove `diagnosticEventsXdr` from `org.stellar.sdk.responses.sorobanrpc.Events`. Use `GetTransactionResponse.diagnosticEventsXdr` and `GetTransactionsResponse.Transaction.diagnosticEventsXdr` instead. ([#744](https://github.com/stellar/java-stellar-sdk/pull/744)) - feat: add [SEP-45](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0045.md) (Stellar Web Authentication for Contract Accounts) support. Check `Sep45Challenge` class for more details. ([#746](https://github.com/stellar/java-stellar-sdk/pull/746)) +- chore: update outdated documentation. ## 2.1.0 diff --git a/android_test/app/build.gradle.kts b/android_test/app/build.gradle.kts index c94732e33..aab60309b 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-2.1.0.jar")) + implementation(files("libs/stellar-sdk-2.2.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 5c8889218..839cc5e21 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -12,7 +12,7 @@ plugins { } group = "network.lightsail" -version = "2.1.0" +version = "2.2.0" java { toolchain { diff --git a/examples/build.gradle.kts b/examples/build.gradle.kts index ce9e0b165..ce992084b 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:2.1.0") + implementation("network.lightsail:stellar-sdk:2.2.0") testImplementation(platform("org.junit:junit-bom:5.10.0")) testImplementation("org.junit.jupiter:junit-jupiter") }