From 792a3f5eb9684db4f67245b918cf1fe401d3c4d8 Mon Sep 17 00:00:00 2001 From: Christian Rogobete Date: Wed, 4 Dec 2024 14:18:11 +0100 Subject: [PATCH] prepare for release 1.9.2 --- CHANGELOG.md | 4 ++++ README.md | 6 +++++- lib/src/stellar_sdk.dart | 2 +- pubspec.yaml | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63f15a1..3df7411 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [1.9.2] - 04.Dec.2024. +- support for the SEP-12 endpoints get and post customer files +- experimental soroban passkey support + ## [1.9.1] - 25.Nov.2024. - include the changes from 1.9.1-beta - fix contractID setter in XdrHashIDPreimage diff --git a/README.md b/README.md index 37e34d8..913e1d2 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Latest stable release: ``` dependencies: - stellar_flutter_sdk: ^1.9.1 + stellar_flutter_sdk: ^1.9.2 ``` 2. Install it (command line or IDE): @@ -348,6 +348,10 @@ You can find additional documentation including the API documentation in the [do This SDK provides [support for Soroban](https://github.com/Soneso/stellar_flutter_sdk/blob/master/soroban.md). +## Soroban Passkey support + +This SDK provides experimental passkey support for Soroban Smart Wallets. +An example on how you can use the SDK to experiment with Soroban Smart Wallets can be found [here](https://github.com/Soneso/soroban_flutter_passkey). ## How to contribute diff --git a/lib/src/stellar_sdk.dart b/lib/src/stellar_sdk.dart index e972a58..e2e6097 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.9.1"; + static const versionNumber = "1.9.2"; static final StellarSDK PUBLIC = StellarSDK("https://horizon.stellar.org"); static final StellarSDK TESTNET = diff --git a/pubspec.yaml b/pubspec.yaml index f2b3d25..2efa241 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.9.1 +version: 1.9.2 homepage: https://github.com/Soneso/stellar_flutter_sdk environment: