diff options
| author | jannfis <jann@mistrust.net> | 2020-08-18 12:04:39 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-18 12:04:39 +0200 |
| commit | 50c2f36f9c730fc023b6eac7d43b3f04337bcc47 (patch) | |
| tree | 2bc4910ffe6494f161b5735adba62aebc8718956 | |
| parent | 84c85e8c3ae69036dfe34dafe1d2411330df79b9 (diff) | |
docs: Reflect release v0.5.0 (#64)
| -rw-r--r-- | CHANGELOG.md | 25 | ||||
| -rw-r--r-- | VERSION | 2 | ||||
| -rw-r--r-- | pkg/version/version.go | 2 |
3 files changed, 27 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cfc54e..c73771c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,31 @@ handling on your side. ### Upgrade notes (no really, you MUST read this) +N/A + +### Bug fixes + +* fix: Properly load registry configuration +* fix: Use a default path for registries.conf +* fix: Make installation base compatible with Kustomize v2 + +### New features + +* feat: Allow filtering of tags using built-in filter functions +* feat: Allow specifying per-image pull secrets +* feat: Support GitHub Docker registry + +### Other changes + +* refactor: Lots of refactoring "under the hood" + + +## 2020-08-18 - Release v0.4.0 + +### Upgrade notes (no really, you MUST read this) + +N/A + ### Bug fixes * fix: Properly load registry configuration @@ -1 +1 @@ -0.4.0 +0.5.0 diff --git a/pkg/version/version.go b/pkg/version/version.go index d00c4c1..7db61d8 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -4,7 +4,7 @@ import "fmt" const ( majorVersion = "0" - minorVersion = "4" + minorVersion = "5" patchVersion = "0" preReleaseString = "master" ) |
