Skip to content

Commit d08fbfe

Browse files
committed
bump to 0.44.1
1 parent aeb430a commit d08fbfe

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ As this project is pre 1.0, breaking changes may happen for minor version bumps.
44

55
## Pending
66

7+
## 0.44.1
8+
### Update
9+
- fix: fix `SSEStream` unpredictably throws unwanted `IOException("Canceled")`. ([#650](https://github.com/lightsail-network/java-stellar-sdk/pull/650))
10+
711
## 0.44.0
812
### Update
913
- feat: add support for Soroban-RPC v21. ([#593](https://github.com/lightsail-network/java-stellar-sdk/pull/593))

android_test/app/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ dependencies {
6868
implementation("androidx.compose.material3:material3")
6969
// Since we are adding local jar(libs/stellar-sdk.jar) as dependency,
7070
// gradle cannot automatically download the required third-party dependencies.
71-
implementation(files("libs/stellar-sdk-0.44.0.jar"))
71+
implementation(files("libs/stellar-sdk-0.44.1.jar"))
7272
implementation("com.squareup.okhttp3:okhttp:4.11.0")
7373
implementation("com.squareup.okhttp3:okhttp-sse:4.11.0")
7474
implementation("com.moandjiezana.toml:toml4j:0.7.2")

android_test/app/src/main/java/org/stellar/javastellarsdkdemoapp/MainActivity.kt

+6-5
Original file line numberDiff line numberDiff line change
@@ -152,11 +152,12 @@ private fun testSDK(): String {
152152
}
153153

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

161162
// build and parse transaction
162163
val source: KeyPair =

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ plugins {
1111
}
1212

1313
group = "network.lightsail"
14-
version = "0.44.0"
14+
version = "0.44.1"
1515

1616
java {
1717
sourceCompatibility = JavaVersion.VERSION_1_8

readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ The Java Stellar SDK library provides APIs to build transactions and connect to
1414
<dependency>
1515
<groupId>network.lightsail</groupId>
1616
<artifactId>stellar-sdk</artifactId>
17-
<version>0.44.0</version>
17+
<version>0.44.1</version>
1818
</dependency>
1919
```
2020

2121
### Gradle
2222
```groovy
23-
implementation 'network.lightsail:stellar-sdk:0.44.0'
23+
implementation 'network.lightsail:stellar-sdk:0.44.1'
2424
```
2525

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

0 commit comments

Comments
 (0)