From 9fab9634951a4fa718477662eafa486691aeb6d9 Mon Sep 17 00:00:00 2001 From: Oleksandr Kushchenko Date: Tue, 10 Oct 2017 16:29:05 +0300 Subject: [PATCH] bump to v0.14.0 --- CHANGELOG | 8 ++++++++ docs/installation.md | 8 ++++---- version.go | 2 +- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 420372841..149878bff 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +### v0.14.0 + +95ba861f Replace godep with dep +cb53644c Template integration with https://github.com/xordataexchange/crypt provided values +6da43945 add go version and git commit sha1 to version string +8f052819 yaml/json file backend +61652a2c Add AWS SSM Parameter Store backend + ### v0.13.0 181e3e3 Update dependencies diff --git a/docs/installation.md b/docs/installation.md index ebd9357e6..a2d499ee5 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -7,19 +7,19 @@ Currently confd ships binaries for OS X and Linux 64bit systems. You can downloa #### OS X ``` -$ wget https://github.com/kelseyhightower/confd/releases/download/v0.13.0/confd-0.13.0-darwin-amd64 +$ wget https://github.com/kelseyhightower/confd/releases/download/v0.14.0/confd-0.14.0-darwin-amd64 ``` #### Linux Download the binary ``` -$ wget https://github.com/kelseyhightower/confd/releases/download/v0.13.0/confd-0.13.0-linux-amd64 +$ wget https://github.com/kelseyhightower/confd/releases/download/v0.14.0/confd-0.14.0-linux-amd64 ``` Move the binary to an installation path, make it executable, and add to path ``` mkdir -p /opt/confd/bin -mv confd-0.13.0-linux-amd64 /opt/confd/bin/confd +mv confd-0.14.0-linux-amd64 /opt/confd/bin/confd chmod +x /opt/confd/bin/confd export PATH="$PATH:/opt/confd/bin" ``` @@ -54,7 +54,7 @@ RUN mkdir -p /go/src/github.com/kelseyhightower/confd && \ WORKDIR /app -RUN wget -O /tmp/confd.zip https://github.com/kelseyhightower/confd/archive/v0.13.0.zip && \ +RUN wget -O /tmp/confd.zip https://github.com/kelseyhightower/confd/archive/v0.14.0.zip && \ unzip -d /tmp/confd /tmp/confd.zip && \ cp -r /tmp/confd/*/* /app && \ rm -rf /tmp/confd* && \ diff --git a/version.go b/version.go index ba2163637..05e006ebb 100644 --- a/version.go +++ b/version.go @@ -1,6 +1,6 @@ package main -const Version = "0.14.0-dev" +const Version = "0.14.0" // We want to replace this variable at build time with "-ldflags -X main.GitSHA=xxx", where const is not supported. var GitSHA = ""