Version bump and changelog
This commit is contained in:
parent
7fa01a2a74
commit
64b434a375
13
CHANGELOG.md
13
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)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue