Skip to content

Commit 31b6c5b

Browse files
authored
release: 1.4.0 (#693)
1 parent 68121f7 commit 31b6c5b

5 files changed

Lines changed: 13 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,25 @@
22

33
## Pending
44

5+
## 1.4.0
6+
7+
### Update:
8+
- feat: Add `getSACBalance` to `SorobanServer`. ([#691](https://github.com/stellar/java-stellar-sdk/pull/691))
9+
510
## 1.3.1
611

712
### Update:
8-
fix: fix the issue where sending assets using `TransactionBuilder.buildPaymentToContractTransaction` fails when the sender's account is the same as the asset issuer's account. ([#685](https://github.com/stellar/java-stellar-sdk/pull/685))
13+
- fix: fix the issue where sending assets using `TransactionBuilder.buildPaymentToContractTransaction` fails when the sender's account is the same as the asset issuer's account. ([#685](https://github.com/stellar/java-stellar-sdk/pull/685))
914

1015
## 1.3.0
1116

1217
### Update:
13-
feat: add support for SEP-35. ([#683](https://github.com/stellar/java-stellar-sdk/pull/683))
18+
- feat: add support for SEP-35. ([#683](https://github.com/stellar/java-stellar-sdk/pull/683))
1419

1520
## 1.2.1
1621

1722
### Update:
18-
fix: remove `@NonNull` annotation from `startLedger` in request classes. ([#680](https://github.com/stellar/java-stellar-sdk/pull/680))
23+
- fix: remove `@NonNull` annotation from `startLedger` in request classes. ([#680](https://github.com/stellar/java-stellar-sdk/pull/680))
1924

2025
## 1.2.0
2126

android_test/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
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.3.1.jar"))
71+
implementation(files("libs/stellar-sdk-1.4.0.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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ plugins {
1111
}
1212

1313
group = "network.lightsail"
14-
version = "1.3.1"
14+
version = "1.4.0"
1515

1616
java {
1717
sourceCompatibility = JavaVersion.VERSION_1_8

examples/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spotless {
2222

2323
dependencies {
2424
// Use https://central.sonatype.com/artifact/network.lightsail/stellar-sdk in prod.
25-
implementation("network.lightsail:stellar-sdk:1.3.1")
25+
implementation("network.lightsail:stellar-sdk:1.4.0")
2626
testImplementation(platform("org.junit:junit-bom:5.10.0"))
2727
testImplementation("org.junit.jupiter:junit-jupiter")
2828
}

readme.md

Lines changed: 2 additions & 2 deletions
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.3.1</version>
17+
<version>1.4.0</version>
1818
</dependency>
1919
```
2020

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