Skip to content

Commit 5cbfe0c

Browse files
authoredMar 11, 2025
release: 1.2.1 (#681)
1 parent b93c47d commit 5cbfe0c

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed
 

‎CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22

33
## Pending
44

5+
## 1.2.1
6+
57
### Update:
6-
fix: remove @NonNull annotation from startLedger in request classes. ([#680](https://github.com/stellar/java-stellar-sdk/pull/680))
8+
fix: remove `@NonNull` annotation from `startLedger` in request classes. ([#680](https://github.com/stellar/java-stellar-sdk/pull/680))
79

810
## 1.2.0
911

‎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-1.2.0.jar"))
71+
implementation(files("libs/stellar-sdk-1.2.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")

‎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 = "1.2.0"
14+
version = "1.2.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>1.2.0</version>
17+
<version>1.2.1</version>
1818
</dependency>
1919
```
2020

2121
### Gradle
2222
```groovy
23-
implementation 'network.lightsail:stellar-sdk:1.2.0'
23+
implementation 'network.lightsail:stellar-sdk:1.2.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)