diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d61a96..79d47a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## [1.3.2] - 26.Apr.2022. +- bugfix stack overflow error + ## [1.3.1] - 06.Apr.2022. - extend example app - add Stellar Quest Series 1 & 2 - bugfixes xdr transaction result parsing diff --git a/README.md b/README.md index 5cb902b..4492fc8 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.3.1 + stellar_flutter_sdk: ^1.3.2 ``` 2. Install it (command line or IDE): ``` diff --git a/lib/src/stellar_sdk.dart b/lib/src/stellar_sdk.dart index 3148d7d..b01bf26 100644 --- a/lib/src/stellar_sdk.dart +++ b/lib/src/stellar_sdk.dart @@ -29,7 +29,7 @@ import 'requests/liquidity_pools_request_builder.dart'; /// Main class of the flutter stellar sdk. class StellarSDK { - static const versionNumber = "1.3.1"; + static const versionNumber = "1.3.2"; static final StellarSDK PUBLIC = StellarSDK("https://horizon.stellar.org"); static final StellarSDK TESTNET = diff --git a/pubspec.yaml b/pubspec.yaml index 798c7ed..9faa429 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.3.1 +version: 1.3.2 homepage: https://github.com/Soneso/stellar_flutter_sdk environment: