diff --git a/CHANGELOG.md b/CHANGELOG.md index a57a9a4..a42d891 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,23 @@ # Changelog -## 0.1.0 +## 0.4.1 -Initial release + * Support custom user agent + * Fix version output -## 0.2.0 +## 0.4.0 - * Interactive password prompt via `--interactive-password` - * Support V2.2 manifests — fixes delete on >= 2.3 registries + * Retrive and use credentials from Docker CLI + * Move to go modules + * Bump dependenciess + +## 0.3.2 + + * Support golang templates for formatting output + +## 0.3.1 + + * Fix recursion in `docker-ls repositories`and `docker-ls tags` ## 0.3.0 @@ -16,16 +26,11 @@ Initial release * 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` - -## 0.3.2 +## 0.2.0 - * Support golang templates for formatting output + * Interactive password prompt via `--interactive-password` + * Support V2.2 manifests — fixes delete on >= 2.3 registries -## 0.4.0 +## 0.1.0 - * Retrive and use credentials from Docker CLI - * Move to go modules - * Bump dependenciess +Initial release diff --git a/README.md b/README.md index 6a48ed5..0b0059e 100644 --- a/README.md +++ b/README.md @@ -134,7 +134,8 @@ This list is not exhaustive; please consult the command line (`-h`) help for all [docker hub](https://hub.docker.com/). * `--user (-u)` Username for authentication. * `--password (-p)` Password for authentication. - * `--interactive-password (-i)` Read the password from an interactive prompt. + * `--user-agent ` Use a custom user agent. + * `--interactive-password(-i)` Read the password from an interactive prompt. * `--level (-l)` The `repositories` and `tags` subcommands support this option for recursive output. Depths 0 (default) and 1 are supported. Please note the recursing means more API requests and may be slow. diff --git a/generators/version.go b/generators/version.go index caa24f9..3895809 100644 --- a/generators/version.go +++ b/generators/version.go @@ -14,7 +14,7 @@ import ( ) const ( - STATIC_VERSION = "0.3.2" + STATIC_VERSION = "0.4.1" TEMPLATE = `// THIS FILE WAS AUTOGENERATED BY GO GENEREATE. DO NOT EDIT! package %s