Skip to content

Commit

Permalink
bump to 0.44.1
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat committed Oct 30, 2024
1 parent aeb430a commit d08fbfe
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ As this project is pre 1.0, breaking changes may happen for minor version bumps.

## Pending

## 0.44.1
### Update
- fix: fix `SSEStream` unpredictably throws unwanted `IOException("Canceled")`. ([#650](https://github.com/lightsail-network/java-stellar-sdk/pull/650))

## 0.44.0
### Update
- feat: add support for Soroban-RPC v21. ([#593](https://github.com/lightsail-network/java-stellar-sdk/pull/593))
Expand Down
2 changes: 1 addition & 1 deletion android_test/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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-0.44.0.jar"))
implementation(files("libs/stellar-sdk-0.44.1.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")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,12 @@ private fun testSDK(): String {
}

// Test Federation
val fedResp =
FederationServer.createForDomain("lobstr.co").resolveAddress("example*lobstr.co")
if (fedResp == null || fedResp.accountId == null) {
throw Exception("Query Federation failed")
}
// Disable the test: https://stackoverflow.com/questions/64844311/certpathvalidatorexception-connecting-to-a-lets-encrypt-host-on-android-m-or-ea
// val fedResp =
// FederationServer.createForDomain("lobstr.co").resolveAddress("example*lobstr.co")
// if (fedResp == null || fedResp.accountId == null) {
// throw Exception("Query Federation failed")
// }

// build and parse transaction
val source: KeyPair =
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
}

group = "network.lightsail"
version = "0.44.0"
version = "0.44.1"

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ The Java Stellar SDK library provides APIs to build transactions and connect to
<dependency>
<groupId>network.lightsail</groupId>
<artifactId>stellar-sdk</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
```

### Gradle
```groovy
implementation 'network.lightsail:stellar-sdk:0.44.0'
implementation 'network.lightsail:stellar-sdk:0.44.1'
```

You can find instructions on how to install this dependency using alternative package managers [here](https://central.sonatype.com/artifact/network.lightsail/stellar-sdk).
Expand Down

0 comments on commit d08fbfe

Please sign in to comment.