Skip to content

Commit

Permalink
Bump version to 0.5.0, update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrey committed May 17, 2017
1 parent a8866bd commit bd62b21
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
5 changes: 4 additions & 1 deletion cmd/commands/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,13 @@ func startTendermint(dir string, basecoinApp *app.Basecoin) error {
cfg.SetRoot(cfg.RootDir)
config.EnsureRoot(cfg.RootDir)

tmLogger, err := log.NewFilterByLevel(logger, cfg.LogLevel)
// TODO: parse the log level from the config properly (multi modules)
// but some tm code must be refactored for better usability
lvl, err := log.AllowLevel(cfg.LogLevel)
if err != nil {
return err
}
tmLogger := log.NewFilter(logger, lvl)

// Create & start tendermint node
privValidator := types.LoadOrGenPrivValidator(cfg.PrivValidatorFile(), tmLogger)
Expand Down
16 changes: 8 additions & 8 deletions glide.lock

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

6 changes: 3 additions & 3 deletions version/version.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package version

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

const Version = "0.4.1"
const Version = "0.5.0"

0 comments on commit bd62b21

Please sign in to comment.