Skip to content

Commit

Permalink
release: 0.44.1
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat committed Oct 30, 2024
1 parent ba06b07 commit dac6d49
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 11 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- release-*
pull_request:
release:
types:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 0.44.1
* Bump `java-stellar-sdk` from 0.44.0 to 0.44.1

## 0.44.0
* Bump `java-stellar-sdk` from 0.43.2 to 0.44.0

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ higher, you do not need to include this library.
<dependency>
<groupId>network.lightsail</groupId>
<artifactId>stellar-sdk-android-spi</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
```

### Gradle

```groovy
implementation 'network.lightsail:stellar-sdk-android-spi:0.44.0'
implementation 'network.lightsail:stellar-sdk-android-spi:0.44.1'
```

The versions of `java-stellar-sdk` and `java-stellar-sdk-android-spi` should be maintained at the same version.
Expand Down
4 changes: 2 additions & 2 deletions android_test/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ dependencies {
implementation("androidx.compose.ui:ui-graphics")
implementation("androidx.compose.ui:ui-tooling-preview")
implementation("androidx.compose.material3:material3")
implementation(files("libs/stellar-sdk-android-spi-0.44.0.jar"))
implementation("network.lightsail:stellar-sdk:0.44.0")
implementation(files("libs/stellar-sdk-android-spi-0.44.1.jar"))
implementation("network.lightsail:stellar-sdk:0.44.1")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.uiautomator:uiautomator:2.3.0-alpha03")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
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
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

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

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand All @@ -31,7 +31,7 @@ repositories {
}

dependencies {
implementation("network.lightsail:stellar-sdk:0.44.0")
implementation("network.lightsail:stellar-sdk:0.44.1")
}

tasks {
Expand Down

0 comments on commit dac6d49

Please sign in to comment.