diff --git a/CHANGELOG.md b/CHANGELOG.md index da7181e..418e880 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [1.8.6] - 19.Aug.2024. +- SEP-06: allow extra fields in deposit and withdraw request +- SEP-06: add userActionRequired by field in transaction response +- SEP-12: null safety improvements +- SEP-24: add userActionRequired by field in transaction response + ## [1.8.5] - 09.Aug.2024. - Update for Horizon API historical data changes diff --git a/README.md b/README.md index 3ce5f3b..16ccfdc 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ The Soneso open source Stellar SDK for Flutter is build with Dart and provides A 1. Add the dependency to your pubspec.yaml file: ``` dependencies: - stellar_flutter_sdk: ^1.8.5 + stellar_flutter_sdk: ^1.8.6 ``` 2. Install it (command line or IDE): ``` diff --git a/lib/src/stellar_sdk.dart b/lib/src/stellar_sdk.dart index c3cd5e0..ca8034f 100644 --- a/lib/src/stellar_sdk.dart +++ b/lib/src/stellar_sdk.dart @@ -31,7 +31,7 @@ import 'requests/liquidity_pools_request_builder.dart'; /// Main class of the flutter stellar sdk. class StellarSDK { - static const versionNumber = "1.8.5"; + static const versionNumber = "1.8.6"; static final StellarSDK PUBLIC = StellarSDK("https://horizon.stellar.org"); static final StellarSDK TESTNET = diff --git a/pubspec.yaml b/pubspec.yaml index 1166bbc..d9fb7b9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: stellar_flutter_sdk description: A stellar blockchain sdk that query's horizon, build, signs and submits transactions to the stellar network. -version: 1.8.5 +version: 1.8.6 homepage: https://github.com/Soneso/stellar_flutter_sdk environment: