File tree 4 files changed +7
-5
lines changed
4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Pending
4
4
5
+ ## 1.2.1
6
+
5
7
### 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 ) )
7
9
8
10
## 1.2.0
9
11
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ dependencies {
68
68
implementation(" androidx.compose.material3:material3" )
69
69
// Since we are adding local jar(libs/stellar-sdk.jar) as dependency,
70
70
// 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" ))
72
72
implementation(" com.squareup.okhttp3:okhttp:4.11.0" )
73
73
implementation(" com.squareup.okhttp3:okhttp-sse:4.11.0" )
74
74
implementation(" com.moandjiezana.toml:toml4j:0.7.2" )
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ plugins {
11
11
}
12
12
13
13
group = " network.lightsail"
14
- version = " 1.2.0 "
14
+ version = " 1.2.1 "
15
15
16
16
java {
17
17
sourceCompatibility = JavaVersion .VERSION_1_8
Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ The Java Stellar SDK library provides APIs to build transactions and connect to
14
14
<dependency >
15
15
<groupId >network.lightsail</groupId >
16
16
<artifactId >stellar-sdk</artifactId >
17
- <version >1.2.0 </version >
17
+ <version >1.2.1 </version >
18
18
</dependency >
19
19
```
20
20
21
21
### Gradle
22
22
``` groovy
23
- implementation 'network.lightsail:stellar-sdk:1.2.0 '
23
+ implementation 'network.lightsail:stellar-sdk:1.2.1 '
24
24
```
25
25
26
26
You can find instructions on how to install this dependency using alternative package managers [ here] ( https://central.sonatype.com/artifact/network.lightsail/stellar-sdk ) .
You can’t perform that action at this time.
0 commit comments