Skip to content

Commit

Permalink
release: 0.43.1 (#584)
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat authored Mar 31, 2024
1 parent 008ace5 commit d4c52e1
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 21 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ As this project is pre 1.0, breaking changes may happen for minor version bumps.

## Pending
### Update
* Migrate the project from `stellar/java-stellar-sdk` to `lightsail-network/stellar-stellar-sdk`.
* Update `org.stellar.sdk.responses`, add missing fields. ([#570](https://github.com/lightsail-network/java-stellar-sdk/pull/570))
* Add `Asset.getContractId()` for calculating the id of the asset contract. ([#574](https://github.com/lightsail-network/java-stellar-sdk/pull/574))
* Publish the publication to Maven Central. ([#580](https://github.com/lightsail-network/java-stellar-sdk/pull/580))
* Build the project with JDK 21. ([#580](https://github.com/lightsail-network/java-stellar-sdk/pull/580))
* Optimize the way of parsing memo in `TransactionResponse`. ([#582](https://github.com/lightsail-network/java-stellar-sdk/pull/582))

## 0.43.0
### Update
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-0.43.0.jar"))
implementation(files("libs/stellar-sdk-0.43.1.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 = "0.43.0"
version = "0.43.1"

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down
36 changes: 17 additions & 19 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,44 +1,42 @@
# java-stellar-sdk

[![Test and Deploy](https://github.com/stellar/java-stellar-sdk/actions/workflows/test-deploy.yml/badge.svg?branch=master)](https://github.com/stellar/java-stellar-sdk/actions/workflows/test-deploy.yml)
[![](https://jitpack.io/v/stellar/java-stellar-sdk.svg)](https://jitpack.io/#stellar/java-stellar-sdk)
[![Test and Deploy](https://github.com/lightsail-network/java-stellar-sdk/actions/workflows/test-deploy.yml/badge.svg?branch=master)](https://github.com/lightsail-network/java-stellar-sdk/actions/workflows/test-deploy.yml)

The Java Stellar Sdk library provides APIs to build transactions and connect to [Horizon](https://github.com/stellar/go/tree/master/services/horizon) and [Soroban-RPC Server](https://soroban.stellar.org/docs/reference/rpc).
The Java Stellar Sdk library provides APIs to build transactions and connect to [Horizon](https://github.com/lightsail-network/go/tree/master/services/horizon) and [Soroban-RPC Server](https://soroban.stellar.org/docs/reference/rpc).

## Installation

### Maven

Use [jitpack.io](https://jitpack.io)'s Maven repository:
### Apache Maven

```xml
<dependency>
<groupId>network.lightsail</groupId>
<artifactId>stellar-sdk</artifactId>
<version>0.43.1</version>
</dependency>
```
repositories {
maven { url "https://jitpack.io" }
}

dependencies {
implementation 'com.github.stellar:java-stellar-sdk:{version}'
}
### Gradle
```groovy
implementation 'network.lightsail:stellar-sdk:0.43.1'
```

The list of versions to install can be found in the [Releases](https://github.com/stellar/java-stellar-sdk/releases) section. More information can be found in [jitpack.io docs](https://jitpack.io/docs/).

### JAR

Download the latest jar from the GitHub repo's [releases tab](https://github.com/stellar/java-stellar-sdk/releases). Add the `jar` package to your project according to how your environment is set up.
Download the latest jar from the GitHub repo's [releases tab](https://github.com/lightsail-network/java-stellar-sdk/releases). Add the `jar` package to your project according to how your environment is set up.

## Basic Usage
For some examples on how to use this library, take a look at the [Get Started docs in the developers site](https://developers.stellar.org/docs/tutorials/create-account/).

## Documentation
Javadoc is available at https://stellar.github.io/java-stellar-sdk
Javadoc is available at https://lightsail-network.github.io/java-stellar-sdk/

## Integrate into Android project
If you want to integrate this SDK on Android platforms with API level 26 and above, you don't need any additional configuration.
However, if you need to include it on lower platforms, you may also need to add the [Java Stellar SDK Android SPI](https://github.com/stellar/java-stellar-sdk-android-spi).
However, if you need to include it on lower platforms, you may also need to add the [Java Stellar SDK Android SPI](https://github.com/lightsail-network/java-stellar-sdk-android-spi).

## Contributing
For information on how to contribute, please refer to our [contribution guide](https://github.com/stellar/java-stellar-sdk/blob/master/CONTRIBUTING.md).
For information on how to contribute, please refer to our [contribution guide](https://github.com/lightsail-network/java-stellar-sdk/blob/master/CONTRIBUTING.md).

## License
java-stellar-sdk is licensed under an Apache-2.0 license. See the [LICENSE](https://github.com/stellar/java-stellar-sdk/blob/master/LICENSE) file for details.
java-stellar-sdk is licensed under an Apache-2.0 license. See the [LICENSE](https://github.com/lightsail-network/java-stellar-sdk/blob/master/LICENSE) file for details.

0 comments on commit d4c52e1

Please sign in to comment.