diff --git a/CHANGELOG.md b/CHANGELOG.md index 30d2ba87..554d48f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,3 +6,31 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## Unreleased + +## [0.2.0] - 2019-02-07 + +### Added + +- Added `toJson()` method to `Transaction` class ([#54]) +- Added `ArduinoJson` dependency and Arduino Sketch paths to `library.json` ([#55]) + +### Changed + +- Removed unused Arduino Adapter Header ([#50]) +- Renamed `Helpers` class to avoid naming collision with Cpp-Client `Helpers` ([#51]) +- Refactored Timestamps & `Slots` to use milliseconds and avoid integer overflow ([#53]) + +### Fixed + +- Fixed the way the Arduino IDE Script restores converted directories ([#49]) +- Corrected PIO Builds to determine dependency versions explicitly ([#52]) + +[unreleased]: https://github.com/ArkEcosystem/cpp-crypto/compare/0.2.0...develop +[0.2.0]: https://github.com/ArkEcosystem/cpp-crypto/compare/0.1.0..0.2.0 +[#54]: https://github.com/ArkEcosystem/cpp-crypto/pull/54 +[#55]: https://github.com/ArkEcosystem/cpp-crypto/pull/55 +[#50]: https://github.com/ArkEcosystem/cpp-crypto/pull/50 +[#51]: https://github.com/ArkEcosystem/cpp-crypto/pull/51 +[#49]: https://github.com/ArkEcosystem/cpp-crypto/pull/49 +[#52]: https://github.com/ArkEcosystem/cpp-crypto/pull/52 +[#53]: https://github.com/ArkEcosystem/cpp-crypto/pull/53 diff --git a/library.json b/library.json index d9ea7bfd..aea38b50 100644 --- a/library.json +++ b/library.json @@ -7,7 +7,7 @@ "type": "git", "url": "https://github.com/ArkEcosystem/Cpp-Crypto.git" }, - "version": "0.1.0", + "version": "0.2.0", "authors": [ { "name": "Ark Ecosystem", diff --git a/library.properties b/library.properties index 694f8364..408eba21 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Ark-Cpp-Crypto -version=0.1.0 +version=0.2.0 author=Ark Ecosystem maintainer=Ark Ecosystem sentence=A simple Cryptography Implementation in C++ for the ARK Blockchain.