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
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,25 @@

## Pending

## 1.4.0

### Update:
- feat: Add `getSACBalance` to `SorobanServer`. ([#691](https://github.com/stellar/java-stellar-sdk/pull/691))

## 1.3.1

### Update:
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))
- 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))

## 1.3.0

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

## 1.2.1

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

## 1.2.0

Expand Down
2 changes: 1 addition & 1 deletion android_test/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ dependencies {
implementation("androidx.compose.material3:material3")
// Since we are adding local jar(libs/stellar-sdk.jar) as dependency,
// gradle cannot automatically download the required third-party dependencies.
implementation(files("libs/stellar-sdk-1.3.1.jar"))
implementation(files("libs/stellar-sdk-1.4.0.jar"))
implementation("com.squareup.okhttp3:okhttp:4.11.0")
implementation("com.squareup.okhttp3:okhttp-sse:4.11.0")
implementation("com.moandjiezana.toml:toml4j:0.7.2")
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
}

group = "network.lightsail"
version = "1.3.1"
version = "1.4.0"

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down
2 changes: 1 addition & 1 deletion examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spotless {

dependencies {
// Use https://central.sonatype.com/artifact/network.lightsail/stellar-sdk in prod.
implementation("network.lightsail:stellar-sdk:1.3.1")
implementation("network.lightsail:stellar-sdk:1.4.0")
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ The Java Stellar SDK library provides APIs to build transactions and connect to
<dependency>
<groupId>network.lightsail</groupId>
<artifactId>stellar-sdk</artifactId>
<version>1.3.1</version>
<version>1.4.0</version>
</dependency>
```

### Gradle
```groovy
implementation 'network.lightsail:stellar-sdk:1.3.1'
implementation 'network.lightsail:stellar-sdk:1.4.0'
```

You can find instructions on how to install this dependency using alternative package managers [here](https://central.sonatype.com/artifact/network.lightsail/stellar-sdk).
Expand Down