From 1b24d493b8708e746ef2397978d81df56b4e7d10 Mon Sep 17 00:00:00 2001 From: Christian Rogobete Date: Thu, 24 Oct 2024 15:16:14 +0200 Subject: [PATCH] prepare for release 1.9.0-beta --- CHANGELOG.md | 3 +++ README.md | 2 +- lib/src/stellar_sdk.dart | 2 +- pubspec.yaml | 2 +- soroban.md | 2 ++ 5 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ede7108..e8cb732 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 0b85e8a..623873e 100644 --- a/README.md +++ b/README.md @@ -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): ``` diff --git a/lib/src/stellar_sdk.dart b/lib/src/stellar_sdk.dart index 0e033f9..329379a 100644 --- a/lib/src/stellar_sdk.dart +++ b/lib/src/stellar_sdk.dart @@ -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 = diff --git a/pubspec.yaml b/pubspec.yaml index 4be4afc..0d86777 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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: diff --git a/soroban.md b/soroban.md index 7da8328..0a30c17 100644 --- a/soroban.md +++ b/soroban.md @@ -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.