Skip to content

Commit e30f17b

Browse files
authored
release: 1.5.0 (#21)
1 parent 220a771 commit e30f17b

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 1.5.0
4+
* Bump `java-stellar-sdk` from 1.4.0 to 1.5.0
5+
36
## 1.4.0
47
* Bump `java-stellar-sdk` from 1.3.1 to 1.4.0
58

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ higher, you do not need to include this library.
1515
<dependency>
1616
<groupId>network.lightsail</groupId>
1717
<artifactId>stellar-sdk-android-spi</artifactId>
18-
<version>1.4.0</version>
18+
<version>1.5.0</version>
1919
</dependency>
2020
```
2121

2222
### Gradle
2323

2424
```groovy
25-
implementation 'network.lightsail:stellar-sdk-android-spi:1.4.0'
25+
implementation 'network.lightsail:stellar-sdk-android-spi:1.5.0'
2626
```
2727

2828
The versions of `java-stellar-sdk` and `java-stellar-sdk-android-spi` should be maintained at the same version.

android_test/app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ dependencies {
6666
implementation("androidx.compose.ui:ui-graphics")
6767
implementation("androidx.compose.ui:ui-tooling-preview")
6868
implementation("androidx.compose.material3:material3")
69-
implementation(files("libs/stellar-sdk-android-spi-1.4.0.jar"))
70-
implementation("network.lightsail:stellar-sdk:1.4.0")
69+
implementation(files("libs/stellar-sdk-android-spi-1.5.0.jar"))
70+
implementation("network.lightsail:stellar-sdk:1.5.0")
7171
testImplementation("junit:junit:4.13.2")
7272
androidTestImplementation("androidx.test.uiautomator:uiautomator:2.3.0-alpha03")
7373
androidTestImplementation("androidx.test.ext:junit:1.1.5")

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group = "network.lightsail"
12-
version = "1.4.0"
12+
version = "1.5.0"
1313

1414
java {
1515
sourceCompatibility = JavaVersion.VERSION_1_8
@@ -31,7 +31,7 @@ repositories {
3131
}
3232

3333
dependencies {
34-
implementation("network.lightsail:stellar-sdk:1.4.0")
34+
implementation("network.lightsail:stellar-sdk:1.5.0")
3535
}
3636

3737
tasks {

0 commit comments

Comments
 (0)