Skip to content

Commit

Permalink
Changelog, documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
DirtyHairy committed Dec 4, 2020
1 parent 8ff6518 commit 6b43cad
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 17 deletions.
35 changes: 20 additions & 15 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <user> (-u)` Username for authentication.
* `--password <password> (-p)` Password for authentication.
* `--interactive-password (-i)` Read the password from an interactive prompt.
* `--user-agent <agent string>` Use a custom user agent.
* `--interactive-password(-i)` Read the password from an interactive prompt.
* `--level <depth> (-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.
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.2"
STATIC_VERSION = "0.4.1"
TEMPLATE = `// THIS FILE WAS AUTOGENERATED BY GO GENEREATE. DO NOT EDIT!
package %s
Expand Down

0 comments on commit 6b43cad

Please sign in to comment.