Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.5.0
* Bump `java-stellar-sdk` from 1.4.0 to 1.5.0

## 1.4.0
* Bump `java-stellar-sdk` from 1.3.1 to 1.4.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>1.4.0</version>
<version>1.5.0</version>
</dependency>
```

### Gradle

```groovy
implementation 'network.lightsail:stellar-sdk-android-spi:1.4.0'
implementation 'network.lightsail:stellar-sdk-android-spi:1.5.0'
```

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-1.4.0.jar"))
implementation("network.lightsail:stellar-sdk:1.4.0")
implementation(files("libs/stellar-sdk-android-spi-1.5.0.jar"))
implementation("network.lightsail:stellar-sdk:1.5.0")
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
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 = "1.4.0"
version = "1.5.0"

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

dependencies {
implementation("network.lightsail:stellar-sdk:1.4.0")
implementation("network.lightsail:stellar-sdk:1.5.0")
}

tasks {
Expand Down
Loading