From 7cb210a7fadcd5f054c58eb399bc40aea422af02 Mon Sep 17 00:00:00 2001 From: Jacob Wernette Date: Tue, 2 Mar 2021 11:48:29 -0500 Subject: [PATCH] chore: bump version to 0.5.0 (#79) --- Makefile | 2 +- README.md | 4 ++-- version/version.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 861a9def..9c477b21 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BINARY=argocd-vault-plugin -VERSION=0.4.1 +VERSION=0.5.0 OS_ARCH=darwin_amd64 default: build diff --git a/README.md b/README.md index c41e6e0c..144324f0 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ initContainers: command: [sh, -c] args: - wget -O argocd-vault-plugin - https://github.com/IBM/argocd-vault-plugin/releases/download/v0.4.0/argocd-vault-plugin_0.4.0_linux_amd64 + https://github.com/IBM/argocd-vault-plugin/releases/download/v0.5.0/argocd-vault-plugin_0.5.0_linux_amd64 chmod +x argocd-vault-plugin && mv argocd-vault-plugin /custom-tools/ volumeMounts: @@ -136,7 +136,7 @@ RUN apt-get update && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* # Install the AVP plugin (as root so we can copy to /usr/local/bin) -RUN curl -L -o argocd-vault-plugin https://github.com/IBM/argocd-vault-plugin/releases/download/v0.4.1/argocd-vault-plugin_0.4.1_linux_amd64 +RUN curl -L -o argocd-vault-plugin https://github.com/IBM/argocd-vault-plugin/releases/download/v0.5.0/argocd-vault-plugin_0.5.0_linux_amd64 RUN chmod +x argocd-vault-plugin RUN mv argocd-vault-plugin /usr/local/bin diff --git a/version/version.go b/version/version.go index fbdbed4b..0d1623a4 100644 --- a/version/version.go +++ b/version/version.go @@ -2,5 +2,5 @@ package version var ( // Version is the argocd-vault-plugin version. - Version = "v0.4.1" + Version = "v0.5.0" )