Skip to content

Commit 4d7e298

Browse files
authored
release: 1.1.0 (#676)
1 parent 92b08ba commit 4d7e298

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## Pending
44

5+
## 1.1.0
6+
7+
In this release, we have significantly simplified the process of using the Java SDK to interact with Soroban contracts.
8+
You can now use stellar-contract-bindings to generate Java bindings for contracts and invoke them.
9+
Please visit [the GitHub repository](https://github.com/lightsail-network/stellar-contract-bindings) of stellar-contract-bindings for more information.
10+
11+
### Update
12+
- feat: add `ContractClient` to simplify contract calls. ([#675](https://github.com/stellar/java-stellar-sdk/pull/675))
13+
514
## 1.0.0
615

716
We are excited to announce the release of version 1.0.0 of the Java Stellar SDK!

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.0.0.jar"))
71+
implementation(files("libs/stellar-sdk-1.1.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.0.0"
14+
version = "1.1.0"
1515

1616
java {
1717
sourceCompatibility = JavaVersion.VERSION_1_8

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.0.0</version>
17+
<version>1.1.0</version>
1818
</dependency>
1919
```
2020

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