From 3e56d78140527897b23ab843be7b83b9155a38ae Mon Sep 17 00:00:00 2001 From: Ruslan Molchanov Date: Mon, 18 Jun 2018 18:39:48 +0300 Subject: [PATCH 1/3] Update the application version --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index d8811b771..f1cca6473 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ plugins { } group = 'io.openfuture.chain' -version = '0.0.1-SNAPSHOT' +version = '0.1.0' sourceCompatibility = JavaVersion.VERSION_1_8 repositories { From 0e770a836c23689620014ad8029f23954346e893 Mon Sep 17 00:00:00 2001 From: Ruslan Molchanov Date: Mon, 18 Jun 2018 18:43:06 +0300 Subject: [PATCH 2/3] Changelog --- CHANGELOG.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..908c08398 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,35 @@ +# Changelog +All notable changes to this project will be documented in this file. + +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.1.0] - 2018-06-18 +### Added +- Setup Netty server for socket connection +- Setup Netty clients for socket connection +- Setup Netty server for HTTP +- Binary serialization communication protocol +- Binary deserialization communication protocol +- Time synchronization +- End-point chain stability check +- Heartbeat implementation +- Application database structure +- Database: setup database connection +- Database: add Base entity +- Database: add Block entity +- Database: add Transaction entity +- Database: setup repository for Block entity +- Database: setup repository for Transaction entity +- Service: define base service interface for Block entity +- Service: define base service interface for Transaction entity +- Service: add base implementation Block entity service +- Service: add base implementation Transaction entity service +- RPC requests: getVersion +- RPC requests: getHardwareInfo +- RPC requests: getTimestamp + +[Unreleased]: https://github.com/OpenFuturePlatform/open-chain/compare/master...sprint +[0.1.0]: https://github.com/OpenFuturePlatform/open-chain/compare/fea19b11de90c89689eff8d2187fd332ee566d19...v0.1.0 \ No newline at end of file From c2b9d8b77846555a0e67ca9853adae6d09f78e07 Mon Sep 17 00:00:00 2001 From: Ruslan Molchanov Date: Mon, 18 Jun 2018 18:45:00 +0300 Subject: [PATCH 3/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 24f0bc8b1..9f6b82d1d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # OPEN Chain [![Twitter Follow](https://img.shields.io/twitter/follow/openplatformico.svg?style=social&label=Follow)](https://twitter.com/openplatformico) +[![Release Version](https://img.shields.io/github/release/OpenFuturePlatform/open-chain.svg?style=flat-square)](https://github.com/OpenFuturePlatform/open-chain/releases) +[![Release Date](https://img.shields.io/github/release-date/OpenFuturePlatform/open-chain.svg?style=flat-square&colorB=007EC6)](https://github.com/OpenFuturePlatform/open-chain/releases) [![Last Commit](https://img.shields.io/github/last-commit/OpenFuturePlatform/open-chain.svg?style=flat-square&colorB=007EC6)](https://github.com/OpenFuturePlatform/open-chain/commits) [![Contributors](https://img.shields.io/github/contributors/OpenFuturePlatform/open-chain.svg?style=flat-square&colorB=007EC6)](https://github.com/OpenFuturePlatform/open-chain/contributors) [![License](https://img.shields.io/github/license/OpenFuturePlatform/open-chain.svg?style=flat-square)](https://github.com/OpenFuturePlatform/open-chain) \ No newline at end of file