Skip to content

Commit

Permalink
prepare for release 1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-rogobete committed Nov 25, 2024
1 parent e0f54ee commit 1551330
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [1.9.1] - 25.Nov.2024.
- include the changes from 1.9.1-beta
- fix contractID setter in XdrHashIDPreimage

## [1.9.1-beta] - 31.Oct.2024.
- Improved Protocol 22 support backwards compatibility:
- revert createdAt to int in soroban TransactionInfo (getTransactions)
Expand Down
9 changes: 1 addition & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,7 @@ Latest stable release:

```
dependencies:
stellar_flutter_sdk: ^1.8.9
```

Prepare for Protocol 22 upgrade:

```
dependencies:
stellar_flutter_sdk: ^1.9.1-beta
stellar_flutter_sdk: ^1.9.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.9.1-beta";
static const versionNumber = "1.9.1";

static final StellarSDK PUBLIC = StellarSDK("https://horizon.stellar.org");
static final StellarSDK TESTNET =
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.9.1-beta
version: 1.9.1
homepage: https://github.com/Soneso/stellar_flutter_sdk

environment:
Expand Down
2 changes: 1 addition & 1 deletion test/soroban_test_auth.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import 'package:flutter_test/flutter_test.dart';
import 'package:stellar_flutter_sdk/stellar_flutter_sdk.dart';

void main() {
String testOn = 'futurenet'; // 'testnet'
String testOn = 'testnet'; // 'testnet'

SorobanServer sorobanServer = testOn == 'testnet'
? SorobanServer("https://soroban-testnet.stellar.org")
Expand Down

0 comments on commit 1551330

Please sign in to comment.