Skip to content

Commit

Permalink
Merge tag 'v0.5.2' into develop
Browse files Browse the repository at this point in the history
v0.5.2
  • Loading branch information
melekes committed Jun 2, 2017
2 parents 6f7a436 + 8e8da7c commit 016d7e5
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 12 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.5.2 (June 2, 2017)

BUG FIXES:
- fix parsing of the log level from Tendermint config (#97)

## 0.5.1 (May 30, 2017)

BUG FIXES:
Expand Down
2 changes: 1 addition & 1 deletion demo/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e
cd $GOPATH/src/github.com/tendermint/basecoin/demo

LOG_DIR="."
TM_VERSION="develop"
TM_VERSION="master"
#TM_VERSION="v0.10.0"

if [[ "$CIRCLECI" == "true" ]]; then
Expand Down
13 changes: 7 additions & 6 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 10 additions & 3 deletions glide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,34 +2,40 @@ package: github.com/tendermint/basecoin
import:
- package: github.com/gorilla/websocket
- package: github.com/pkg/errors
version: ^0.8.0
- package: github.com/spf13/cobra
- package: github.com/spf13/pflag
- package: github.com/spf13/viper
- package: github.com/tendermint/abci
version: ~0.5.0
version:
subpackages:
- server
- types
- package: github.com/tendermint/go-crypto
version: ~0.2.0
subpackages:
- cmd
- keys
- package: github.com/tendermint/go-wire
version: ~0.6.2
subpackages:
- data
- package: github.com/tendermint/light-client
version: develop
version: ~0.10.0
subpackages:
- commands
- commands/proofs
- commands/seeds
- commands/txs
- proofs
- package: github.com/tendermint/merkleeyes
version: ~0.2.0
subpackages:
- client
- iavl
- package: github.com/tendermint/tendermint
version: develop
version: ~0.10.0
subpackages:
- config
- node
Expand All @@ -40,9 +46,10 @@ import:
- rpc/lib/types
- types
- package: github.com/tendermint/tmlibs
version: develop
version: ~0.2.0
subpackages:
- cli
- cli/flags
- common
- events
- log
Expand Down
4 changes: 2 additions & 2 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ package version

const Maj = "0"
const Min = "5"
const Fix = "1"
const Fix = "2"

const Version = "0.5.1"
const Version = "0.5.2"

0 comments on commit 016d7e5

Please sign in to comment.