Skip to content

Commit

Permalink
prepare for release 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-rogobete committed Jun 6, 2024
1 parent b5ce093 commit 38e0d43
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 551 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [1.8.1] - 6.Jun.2024.
- soroban improvements
- add soroban support to txRep (sep-11)

## [1.8.0] - 13.May.2024.
- add protocol 21 support

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.8.0
stellar_flutter_sdk: ^1.8.1
```
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.8.0";
static const versionNumber = "1.8.1";

static final StellarSDK PUBLIC = StellarSDK("https://horizon.stellar.org");
static final StellarSDK TESTNET = StellarSDK("https://horizon-testnet.stellar.org");
Expand Down
3 changes: 2 additions & 1 deletion lib/src/transaction.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

import "dart:convert";
import 'dart:typed_data';
import 'package:stellar_flutter_sdk/stellar_flutter_sdk.dart';

import 'muxed_account.dart';
import 'key_pair.dart';
Expand All @@ -20,6 +19,8 @@ import 'xdr/xdr_transaction.dart';
import 'xdr/xdr_type.dart';
import 'xdr/xdr_memo.dart';
import 'account.dart';
import 'invoke_host_function_operation.dart';
import 'soroban/soroban_auth.dart';

abstract class AbstractTransaction {
late List<XdrDecoratedSignature> _mSignatures;
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.8.0
version: 1.8.1
homepage: https://github.com/Soneso/stellar_flutter_sdk

environment:
Expand Down
Loading

0 comments on commit 38e0d43

Please sign in to comment.