diff --git a/CHANGELOG.md b/CHANGELOG.md index 860811a..c33a323 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Please check our [developers guide](https://gitlab.com/tokend/developers-guide) for further information about branching and tagging conventions. +## [3.6.1] 2019-11-26 + +### Added +- `Transaction` constructor from XDR `TransactionEnvelope` + +### Changed +- Signing-related `Transaction` methods are now static + ## [3.6.0] 2019-11-05 ### Changed @@ -88,4 +96,5 @@ of the required class in Kotlin or use `*.Decoder` static member in Java [3.4.2]: https://github.com/tokend/kotlin-wallet/compare/3.4.1...3.4.2 [3.5.0]: https://github.com/tokend/kotlin-wallet/compare/3.4.2...3.5.0 [3.6.0]: https://github.com/tokend/kotlin-wallet/compare/3.5.0...3.6.0 -[Unreleased]: https://github.com/tokend/kotlin-wallet/compare/3.6.0...HEAD +[3.6.1]: https://github.com/tokend/kotlin-wallet/compare/3.6.0...3.6.1 +[Unreleased]: https://github.com/tokend/kotlin-wallet/compare/3.6.1...HEAD diff --git a/README.md b/README.md index bbe67e3..a57929f 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ allprojects { dependencies { ... - compile "org.tokend:wallet:3.6.0" + compile "org.tokend:wallet:3.6.1" } ```