summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md10
-rw-r--r--VERSION2
-rw-r--r--pkg/version/version.go2
3 files changed, 12 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0573b52..688bc83 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,16 @@ handling on your side.
### Upgrade notes (no really, you MUST read this)
+### Bug fixes
+
+### New features
+
+### Other changes
+
+## 2020-08-10 - Release v0.3.0
+
+### Upgrade notes (no really, you MUST read this)
+
* Syntax change for running: `argocd-image-updater run [flags]` instead of `argocd-image-updater [flags]` has now to be used
* **Attention:** Helm annotation names have changed from `<image_alias>.image-{name,tag,spec}` to `<image_alias>.helm.image-{name,tag,spec}`
* Specifying target image name for Kustomize applications now require their own annotation, the image alias is not re-used for this anymore
diff --git a/VERSION b/VERSION
index 0d91a54..1d0ba9e 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.3.0
+0.4.0
diff --git a/pkg/version/version.go b/pkg/version/version.go
index f6bc4ef..d00c4c1 100644
--- a/pkg/version/version.go
+++ b/pkg/version/version.go
@@ -4,7 +4,7 @@ import "fmt"
const (
majorVersion = "0"
- minorVersion = "2"
+ minorVersion = "4"
patchVersion = "0"
preReleaseString = "master"
)