Skip to content

Commit 38e0d43

Browse files
prepare for release 1.8.1
1 parent b5ce093 commit 38e0d43

6 files changed

+9
-551
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [1.8.1] - 6.Jun.2024.
2+
- soroban improvements
3+
- add soroban support to txRep (sep-11)
4+
15
## [1.8.0] - 13.May.2024.
26
- add protocol 21 support
37

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The Soneso open source Stellar SDK for Flutter is build with Dart and provides A
1111
1. Add the dependency to your pubspec.yaml file:
1212
```
1313
dependencies:
14-
stellar_flutter_sdk: ^1.8.0
14+
stellar_flutter_sdk: ^1.8.1
1515
```
1616
2. Install it (command line or IDE):
1717
```

lib/src/stellar_sdk.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import 'requests/liquidity_pools_request_builder.dart';
3131

3232
/// Main class of the flutter stellar sdk.
3333
class StellarSDK {
34-
static const versionNumber = "1.8.0";
34+
static const versionNumber = "1.8.1";
3535

3636
static final StellarSDK PUBLIC = StellarSDK("https://horizon.stellar.org");
3737
static final StellarSDK TESTNET = StellarSDK("https://horizon-testnet.stellar.org");

lib/src/transaction.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
import "dart:convert";
66
import 'dart:typed_data';
7-
import 'package:stellar_flutter_sdk/stellar_flutter_sdk.dart';
87

98
import 'muxed_account.dart';
109
import 'key_pair.dart';
@@ -20,6 +19,8 @@ import 'xdr/xdr_transaction.dart';
2019
import 'xdr/xdr_type.dart';
2120
import 'xdr/xdr_memo.dart';
2221
import 'account.dart';
22+
import 'invoke_host_function_operation.dart';
23+
import 'soroban/soroban_auth.dart';
2324

2425
abstract class AbstractTransaction {
2526
late List<XdrDecoratedSignature> _mSignatures;

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: stellar_flutter_sdk
22
description: A stellar blockchain sdk that query's horizon, build, signs and submits transactions to the stellar network.
3-
version: 1.8.0
3+
version: 1.8.1
44
homepage: https://github.com/Soneso/stellar_flutter_sdk
55

66
environment:

0 commit comments

Comments
 (0)