Skip to content

Commit

Permalink
prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-rogobete committed Jul 4, 2020
1 parent 6b84551 commit 3bc35e1
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [0.8.6] - 04.Jul.2020.
- improve path finding
- improve trades query
- fix and improve trades query
- fix and improve order book query
- change offer ids from int to String
- imporve tests and examples

## [0.8.5] - 02.Jul.2020.
- Handle muxed accounts on fee bump transactions (feeSource)
- Handle muxed accounts as transaction source
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# [Stellar SDK for Flutter](https://github.com/Soneso/stellar_flutter_sdk)

![Beta Version](https://img.shields.io/badge/Beta-v0.8.5-yellow.svg)
![Beta Version](https://img.shields.io/badge/Beta-v0.8.6-yellow.svg)
![Dart](https://img.shields.io/badge/Dart-green.svg)
![Flutter](https://img.shields.io/badge/Flutter-blue.svg)
![Supports Stellar Horizon v1.4.0](https://img.shields.io/badge/Horizon-v1.4.0-blue.svg)
![Supports Stellar Core v13](https://img.shields.io/badge/Core-v13-blue.svg)

The Soneso open source Stellar SDK for Flutter is build with Dart and provides APIs to build and sign transactions, connect and query [Horizon](https://github.com/stellar/horizon).

The SDK is currently in beta stage - v. 0.8.5.
The SDK is currently in beta stage - v. 0.8.6.

## Installation

### From pub.dev
1. Add the dependency to your pubspec.yaml file:
```
dependencies:
stellar_flutter_sdk: ^0.8.5
stellar_flutter_sdk: ^0.8.6
```
2. Install it (command line or IDE):
```
Expand Down
Binary file modified documentation/sdk_api_doc.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/src/stellar_sdk.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import 'requests/trades_request_builder.dart';

/// Main class of the flutter stellar sdk.
class StellarSDK {
static const versionNumber = "0.8.5";
static const versionNumber = "0.8.6";

static final StellarSDK PUBLIC =
new StellarSDK("https://horizon.stellar.org");
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 netweok.
version: 0.8.5
version: 0.8.6
homepage: https://github.com/Soneso/stellar_flutter_sdk

environment:
Expand Down

0 comments on commit 3bc35e1

Please sign in to comment.