Skip to content

Commit 7861f6d

Browse files
committed
release: 2.2.3
1 parent f373859 commit 7861f6d

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Changelog
22

33
## Pending
4-
- fix: replace `commons-codec` Hex with pure-Java implementation in `Util` to fix `NoSuchMethodError` crash on Android API 24-27.
5-
- refactor!: remove `InvokeHostFunctionOperation.createStellarAssetContractOperationBuilder(Address, byte[])`, use `InvokeHostFunctionOperation.createContractOperationBuilder` instead.
4+
5+
## 2.2.3
6+
7+
### Update
8+
- fix: replace `commons-codec` Hex with pure-Java implementation in `Util` to fix `NoSuchMethodError` crash on Android API 24-27. ([#763](https://github.com/lightsail-network/java-stellar-sdk/pull/763))
9+
- refactor!: remove `InvokeHostFunctionOperation.createStellarAssetContractOperationBuilder(Address, byte[])`, use `InvokeHostFunctionOperation.createContractOperationBuilder` instead. ([#764](https://github.com/lightsail-network/java-stellar-sdk/pull/764))
610

711
## 2.2.2
812

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-2.2.2.jar"))
71+
implementation(files("libs/stellar-sdk-2.2.3.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
@@ -12,7 +12,7 @@ plugins {
1212
}
1313

1414
group = "network.lightsail"
15-
version = "2.2.2"
15+
version = "2.2.3"
1616

1717
java {
1818
toolchain {

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:2.2.2")
25+
implementation("network.lightsail:stellar-sdk:2.2.3")
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>2.2.2</version>
17+
<version>2.2.3</version>
1818
</dependency>
1919
```
2020

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