Skip to content

Commit

Permalink
prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-rogobete committed Jan 18, 2024
1 parent e9a44f5 commit 321e896
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [1.7.2] - 18.Jan.2024.
- extend soroban send transaction response
- improve SEP-006 support

## [1.7.1] - 18.Dec.2023.
- update for new soroban version 20.0.2

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1
stellar_flutter_sdk: ^1.7.2
```
2. Install it (command line or IDE):
```
Expand Down
2 changes: 1 addition & 1 deletion lib/src/stellar_sdk.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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.1";
static const versionNumber = "1.7.2";

static final StellarSDK PUBLIC = StellarSDK("https://horizon.stellar.org");
static final StellarSDK TESTNET = StellarSDK("https://horizon-testnet.stellar.org");
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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.1
version: 1.7.2
homepage: https://github.com/Soneso/stellar_flutter_sdk

environment:
Expand Down
4 changes: 2 additions & 2 deletions test/query_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ void main() {
/// ! get Claimable Balance ID from BID result at claimable_balance_test.dart
Page<OperationResponse> operationsPage = await sdk.operations
.forClaimableBalance(
"0000000070ceb102da32f678623f7d62d70bd9820776b4b995b3956eb5714692d419da78")
"00000000a68077bb79ea02e64a8da05ed5f4caf4d796815a899fc927507bc12f66b1f0c9")
.limit(1)
.order(RequestBuilderOrder.DESC)
.execute();
Expand All @@ -195,7 +195,7 @@ void main() {
/// ! get Claimable Balance ID from BID result at claimable_balance_test.dart
Page<TransactionResponse> transactionsPage = await sdk.transactions
.forClaimableBalance(
"0000000070ceb102da32f678623f7d62d70bd9820776b4b995b3956eb5714692d419da78")
"00000000a68077bb79ea02e64a8da05ed5f4caf4d796815a899fc927507bc12f66b1f0c9")
.limit(1)
.order(RequestBuilderOrder.DESC)
.execute();
Expand Down

0 comments on commit 321e896

Please sign in to comment.