summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md25
-rw-r--r--VERSION2
-rw-r--r--pkg/version/version.go2
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
diff --git a/VERSION b/VERSION
index 1d0ba9e..8f0916f 100644
--- a/VERSION
+++ b/VERSION
@@ -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"
)