Skip to content

Commit

Permalink
Fix recursion, bump version to 0.3.1 .
Browse files Browse the repository at this point in the history
  • Loading branch information
DirtyHairy committed Oct 2, 2017
1 parent 8dd34ff commit d803109
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,7 @@ Initial release
* Most options now have shorthands.
* Support for configuration via environment and config file.
* Move to dep for dependency management, commit vendored dependencies

## 0.3.1

* Fix recursion in `docker-ls repositories`and `docker-ls tags`
2 changes: 1 addition & 1 deletion cli/util/cli_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func AddCliConfigToFlags(flags *pflag.FlagSet, options uint) {

func CliConfigFromViper() *CliConfig {
return &CliConfig{
RecursionLevel: uint(viper.GetInt("recursion")),
RecursionLevel: uint(viper.GetInt("level")),
Statistics: viper.GetBool("statistics"),
Progress: viper.GetBool("progress-indicator"),
JsonOutput: viper.GetBool("json"),
Expand Down
2 changes: 1 addition & 1 deletion generators/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
)

const (
STATIC_VERSION = "0.3.0"
STATIC_VERSION = "0.3.1"
TEMPLATE = `// THIS FILE WAS AUTOGENERATED BY GO GENEREATE. DO NOT EDIT!
package %s
Expand Down

0 comments on commit d803109

Please sign in to comment.