From 447d4ea4c9bd435221295db6cbc31f16f9483792 Mon Sep 17 00:00:00 2001 From: Bartek Nowotarski Date: Mon, 12 Feb 2018 20:14:06 +0100 Subject: [PATCH] 0.2.0 --- CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++++ build.gradle | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b7e626c2..11cb40d41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,43 @@ As this project is pre 1.0, breaking changes may happen for minor version bumps. A breaking change will get clearly notified in this log. +## 0.2.0 + +* Java SDK now works in Android! +* `Price` constructor is now public. +* Added support for new endpoints and fields added in Horizon v0.12.0. + +## 0.1.14 + +* Fixed `pad()` method in `XdrInputStream`. +* Added utf8 string support for `XdrDataInputStream` and `XdrDataOutputStream`. +* Fixed `AllowTrustOperation.Builder` for `ASSET_TYPE_CREDIT_ALPHANUM12` assets. + +## 0.1.13 + +* `KeyPair.sign` now throws `RuntimeException` when `KeyPair` object does not contain a secret key. +* `SubmitTransactionResponse.getOfferIdFromResult` if offer was taken and `tx_result` does not contain offer ID. + +## 0.1.12 + +- Regenerated XDR classes: + - `XdrDataOutputStream` class is now padding opaque data. + - `XdrDataInputStream` class is now throwing an IOException when padding + bytes are not zeros. + - Made methods that shouldn't be used outside of `XdrDataOutputStream` + and `XdrDataInputStream` classes private. + - Removed unused imports and variables. + +## 0.1.11 + +* Added ability to set TimeBounds using Transaction.Builder +* Implemented `/order_book` and `/order_book/trades` requests. + +## 0.1.10 + +* Fixed a bug in `AssetDeserializer`. +* Fixed a bug in `TransactionResponse`. + ## 0.1.9 * Support for new signer types: `sha256Hash`, `preAuthTx`. diff --git a/build.gradle b/build.gradle index a3c5cd7d4..056debeb8 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'java' apply plugin: 'ivy-publish' sourceCompatibility = 1.6 -version = '0.1.14' +version = '0.2.0' group = 'stellar' jar {