Skip to content

Commit b8ec0e2

Browse files
authored
pre-release: 1.0.0-rc0 (#669)
1 parent 19a7ec1 commit b8ec0e2

File tree

3 files changed

+20
-9
lines changed

3 files changed

+20
-9
lines changed

CHANGELOG.md

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,26 @@
22

33
## Pending
44

5+
## 1.0.0-rc0
6+
7+
The following are the changes since version 1.0.0-beta1. If you are upgrading from an older version,
8+
please also refer to the change logs of previous versions, **especially [1.0.0-alpha0](https://github.com/lightsail-network/java-stellar-sdk/releases/tag/1.0.0-alpha0)**.
9+
10+
In addition, there are two PRs here that demonstrate how to upgrade to the latest version; you can check them out if needed:
11+
- https://github.com/stellar/kotlin-wallet-sdk/pull/155
12+
- https://github.com/stellar/java-stellar-anchor-sdk/pull/1575
13+
514
### Update
15+
- feat: add support for Soroban PRC's `getLedgers` API interface. ([#660](https://github.com/stellar/java-stellar-sdk/pull/660))
16+
- fix: fix the data validation of `StrKey` class. ([#664](https://github.com/stellar/java-stellar-sdk/pull/664))
17+
18+
### Breaking changes
619
- refactor!: change the type of `AbstractTransaction.MIN_BASE_FEE` from `int` to `long`. ([#657](https://github.com/stellar/java-stellar-sdk/pull/657))
7-
- feat: add support for Soroban PRC's `getLedgers` API interface.
8-
- refactor!: if seed is not present, calling `Keypair.sign` throws IllegalStateException.
9-
- refactor!: `StrKeyException` has been removed, use `IllegalArgumentException` instead. When you call functions like `Keypair.fromAccountId`, this exception will also be thrown if invalid data is passed in.
10-
- refactor!: `AssetCodeLengthInvalidException` has been removed, use `IllegalArgumentException` instead.
11-
- refactor!: `MalformedAddressException` has been removed, use `IllegalArgumentException` instead.
12-
- fix: fix the data validation of `StrKey` class.
13-
- refactor!: rename `TransactionPreconditions.isValid` to `TransactionPreconditions.validate`.
20+
- refactor!: rename `TransactionPreconditions.isValid` to `TransactionPreconditions.validate`. ([#666](https://github.com/stellar/java-stellar-sdk/pull/666))
21+
- refactor!: if seed is not present, calling `Keypair.sign` throws IllegalStateException. ([#662](https://github.com/stellar/java-stellar-sdk/pull/662))
22+
- refactor!: `StrKeyException` has been removed, use `IllegalArgumentException` instead. When you call functions like `Keypair.fromAccountId`, this exception will also be thrown if invalid data is passed in. ([#663](https://github.com/stellar/java-stellar-sdk/pull/663))
23+
- refactor!: `AssetCodeLengthInvalidException` has been removed, use `IllegalArgumentException` instead. ([#667](https://github.com/stellar/java-stellar-sdk/pull/667))
24+
- refactor!: `MalformedAddressException` has been removed, use `IllegalArgumentException` instead. ([#668](https://github.com/stellar/java-stellar-sdk/pull/668))
1425

1526
## 1.0.0-beta1
1627

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

1616
java {
1717
sourceCompatibility = JavaVersion.VERSION_1_8

0 commit comments

Comments
 (0)