Skip to content

Commit

Permalink
prepare for release 1.9.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-rogobete committed Oct 24, 2024
1 parent 1194f81 commit 1b24d49
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [1.9.0-beta] - 24.Oct.2024.
- Protocol 22 support

## [1.8.9] - 21.Oct.2024.
- allow null values in account response for lastModifiedTime

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.9
stellar_flutter_sdk: ^1.9.0-beta
```
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.1";
static const versionNumber = "1.9.0-beta";

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.8.9
version: 1.9.0-beta
homepage: https://github.com/Soneso/stellar_flutter_sdk

environment:
Expand Down
2 changes: 2 additions & 0 deletions soroban.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,8 @@ if (GetTransactionResponse.STATUS_SUCCESS == status) {

Success!

With the introduction of Protocol 22, contracts with constructor can also be created. The `CreateContractWithConstructorHostFunction` object is used to build the operation.

#### Get Ledger Entry

The Soroban-RPC server also provides the possibility to request values of ledger entries directly. It will allow you to directly inspect the current state of a contract, a contract’s code, or any other ledger entry.
Expand Down

0 comments on commit 1b24d49

Please sign in to comment.