From 49f320216976f40f759c1381b0645a5a8c8c7c9c Mon Sep 17 00:00:00 2001 From: Christian Rogobete Date: Mon, 18 Dec 2023 21:16:29 +0100 Subject: [PATCH] prepare for release --- CHANGELOG.md | 3 +++ README.md | 2 +- lib/src/stellar_sdk.dart | 2 +- pubspec.yaml | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 172ddd0..5f71e4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## [1.7.1] - 18.Dec.2023. +- update for new soroban version 20.0.2 + ## [1.7.0] - 23.Nov.2023. - improve status code 429 handling - fix soroban simulate tx response parsing diff --git a/README.md b/README.md index b95a78c..1610b4b 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.7.0 + stellar_flutter_sdk: ^1.7.1 ``` 2. Install it (command line or IDE): ``` diff --git a/lib/src/stellar_sdk.dart b/lib/src/stellar_sdk.dart index feea94b..82108cc 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.7.0"; + static const versionNumber = "1.7.1"; static final StellarSDK PUBLIC = StellarSDK("https://horizon.stellar.org"); static final StellarSDK TESTNET = StellarSDK("https://horizon-testnet.stellar.org"); diff --git a/pubspec.yaml b/pubspec.yaml index a0efc25..befdc99 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.7.0 +version: 1.7.1 homepage: https://github.com/Soneso/stellar_flutter_sdk environment: