From 2c98876414dfbb4c3e1b5039222d464ef04ba636 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Wed, 11 Oct 2017 16:57:38 -0400 Subject: [PATCH] readme, changelog, version bump --- CHANGELOG.md | 6 +++--- README.md | 11 ++++++++++- version/version.go | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e94d19c48..17a9f2fb05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ # Changelog -## CHANGES IN DEVELOP +## 0.7.0 (October 11, 2017) -IMPROVEMENTS: +BREAKING CHANGES: -* initialize options for genesis with `--option` flag on `basecoin init` +* Everything has changed, and it's all about to change again, so don't bother using it yet! ## 0.6.2 (July 27, 2017) diff --git a/README.md b/README.md index 6937c5a8bd..a5bc0e3f09 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,16 @@ Branch | Tests | Coverage develop | [![CircleCI](https://circleci.com/gh/cosmos/cosmos-sdk/tree/develop.svg?style=shield)](https://circleci.com/gh/cosmos/cosmos-sdk/tree/develop) | [![codecov](https://codecov.io/gh/cosmos/cosmos-sdk/branch/develop/graph/badge.svg)](https://codecov.io/gh/cosmos/cosmos-sdk) master | [![CircleCI](https://circleci.com/gh/cosmos/cosmos-sdk/tree/master.svg?style=shield)](https://circleci.com/gh/cosmos/cosmos-sdk/tree/master) | [![codecov](https://codecov.io/gh/cosmos/cosmos-sdk/branch/master/graph/badge.svg)](https://codecov.io/gh/cosmos/cosmos-sdk) -The Cosmos SDK is the middleware platform which the [Cosmos Hub](https://cosmos.network) is constructed from. The Hub is a blockchain (or, internet of blockchains) in which the Atom supply resides. The Atoms supply is defined at genesis and can change based on the rules of the Hub. + +!!!!!!!!!!!!!!!!!!!!! + +*THIS REPOSITORY IS UNDERGOING RAPID DEVELOPMENT AND NONE OF ITS INTERFACES ARE CONSIDERED STABLE.* + +*USE AT YOUR OWN RISK.* + +!!!!!!!!!!!!!!!!!!!!! + +The Cosmos SDK is the middleware platform that the [Cosmos Hub](https://cosmos.network) is constructed from. The Hub is a blockchain (or, internet of blockchains) in which the Atom supply resides. The Atoms supply is defined at genesis and can change based on the rules of the Hub. Under the hood, the Cosmos SDK is an [ABCI application](https://github.com/tendermint/abci) designed to be used with the [Tendermint consensus engine](https://tendermint.com/) to form a Proof-of-Stake cryptocurrency. It also provides a general purpose framework for extending the feature-set of the cryptocurrency by implementing plugins. diff --git a/version/version.go b/version/version.go index 127342841b..36e7424a4d 100644 --- a/version/version.go +++ b/version/version.go @@ -5,4 +5,4 @@ const Maj = "0" const Min = "7" const Fix = "0" -const Version = "0.7.0-alpha" +const Version = "0.7.0"