diff --git a/CHANGELOG.md b/CHANGELOG.md index acec00728..e176af5ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,27 @@ As this project is pre 1.0, breaking changes may happen for minor version bumps. ## Pending +## 0.41.0-beta.0 +* Add support for Soroban Preview 10. ([#490](https://github.com/stellar/java-stellar-sdk/issues/490)) +* Correct the data type of certain fields to store the expected design values. ([#497](https://github.com/stellar/java-stellar-sdk/pull/497)) +* Add source account comparison to `ClawbackClaimableBalanceOperation`, `LiquidityPoolWithdrawOperation`, and `LiquidityPoolDepositOperation` for equality check. ([#484](https://github.com/stellar/java-stellar-sdk/pull/484)) +* Add basic implementation of `liquidity_pools?account` ([#426](https://github.com/stellar/java-stellar-sdk/pull/426)) + +### Breaking changes +* `Utils.claimableBalanceIdToXDR` and `Utils.xdrToClaimableBalanceId` have been removed. ([#503](https://github.com/stellar/java-stellar-sdk/pull/503)) +* The types of the following fields have changed. ([#498](https://github.com/stellar/java-stellar-sdk/pull/498)) + | field | before | now | + | ----------------------------------------- | ------ | ---------- | + | LedgerBounds.minLedger | int | long | + | LedgerBounds.maxLedger | int | long | + | MemoId.id | long | BigInteger | + | TimeBounds.minTime | long | BigInteger | + | TimeBounds.maxTime | long | BigInteger | + | TransactionBuilder.baseFee | int | long | + | TransactionPreconditions.TIMEOUT_INFINITE | long | BigInteger | + | TransactionPreconditions.minSeqAge | Long | BigInteger | + | TransactionPreconditions.minSeqLedgerGap | int | long | + ## 0.40.0 * Add strkey support for contract ids ([#471](https://github.com/stellar/java-stellar-sdk/pull/471)) * Fix NPE in `KeyPair.equals()` method ([#474](https://github.com/stellar/java-stellar-sdk/pull/474)) diff --git a/build.gradle b/build.gradle index a8455fde2..b52c646e7 100644 --- a/build.gradle +++ b/build.gradle @@ -25,7 +25,7 @@ spotless { sourceCompatibility = JavaVersion.VERSION_1_8.toString() -version = '0.40.0' +version = '0.41.0-beta.0' group = 'stellar' jar.enabled = false