From 64b434a375782d8b6988bf8038e0496e5fe36fbe Mon Sep 17 00:00:00 2001 From: Ethan Frey Date: Wed, 28 Jun 2017 13:20:54 +0200 Subject: [PATCH] Version bump and changelog --- CHANGELOG.md | 13 ++++++++----- glide.lock | 9 +++++---- glide.yaml | 2 +- version/version.go | 4 ++-- 4 files changed, 16 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 979a46f78..16e4be145 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 0.6.1 (TBD) +## 0.6.1 (June 28, 2017) Make lots of small cli fixes that arose when people were using the tools for the testnet. @@ -14,17 +14,20 @@ IMPROVEMENTS: - Example: `basecoin start --log_level="merkleeyes:info,state:info,*:error"` - Example: `basecoin start --log_level="merkleeyes:debug,state:info,*:error"` - basecli - - `basecli query account` accepts hex account address with or without `0x` - prefix - `basecli init` is more intelligent and only complains if there really was a connected chain, not just random files - support `localhost:46657` or `http://localhost:46657` format for nodes, not just `tcp://localhost:46657` - - gives error message when running commands on an unitialized chain, rather - than some unintelligable panic - Add `--genesis` to init to specify chain-id and validator hash - Example: `basecli init --node=localhost:46657 --genesis=$HOME/.basecoin/genesis.json` + - `basecli rpc` has a number of methods to easily accept tendermint rpc, and verifies what it can +BUG FIXES: +- basecli + - `basecli query account` accepts hex account address with or without `0x` + prefix + - gives error message when running commands on an unitialized chain, rather + than some unintelligable panic ## 0.6.0 (June 22, 2017) diff --git a/glide.lock b/glide.lock index cc3ddc700..71ebac8c7 100644 --- a/glide.lock +++ b/glide.lock @@ -1,5 +1,5 @@ -hash: b6581244bc7f6a77a20ea9ff8e383bbbd19e5a5ba2ec321600c9ccf78ab4a4f7 -updated: 2017-06-27T17:52:52.08369715+02:00 +hash: 6eb1119dccf2ab4d0adb870a14cb4408047119be53c8ec4afeaa281bd1d2b457 +updated: 2017-06-28T13:09:42.542992443+02:00 imports: - name: github.com/bgentry/speakeasy version: 4aabc24848ce5fd31929f7d1e4ea74d3709c14cd @@ -132,7 +132,7 @@ imports: - data - data/base58 - name: github.com/tendermint/light-client - version: dc8fb1ff741c7e9b8545a868a44eaf234e5ad9d1 + version: 489b726d8b358dbd9d8f6a15d18e8b9fe0a39269 subpackages: - certifiers - certifiers/client @@ -140,11 +140,12 @@ imports: - commands - commands/proofs - commands/proxy + - commands/rpc - commands/seeds - commands/txs - proofs - name: github.com/tendermint/merkleeyes - version: 49ee9a2b3ed6759c38dcd27e5491a927822cb325 + version: 102aaf5a8ffda1846413fb22805a94def2045b9f subpackages: - app - client diff --git a/glide.yaml b/glide.yaml index a1a7b3719..7e7727aac 100644 --- a/glide.yaml +++ b/glide.yaml @@ -22,7 +22,7 @@ import: subpackages: - data - package: github.com/tendermint/light-client - version: feature/32-add-rpc-cli + version: develop subpackages: - commands - commands/proofs diff --git a/version/version.go b/version/version.go index 8e82ffaff..1e25edb4a 100644 --- a/version/version.go +++ b/version/version.go @@ -2,6 +2,6 @@ package version const Maj = "0" const Min = "6" -const Fix = "0" +const Fix = "1" -const Version = "0.6.0" +const Version = "0.6.1"