diff --git a/CHANGELOG b/CHANGELOG index 149878bff..53c6668ab 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,17 @@ +### v0.15.0 + +0c4cb29e Don't pass empty prefix to zookeeper nodeWalk +5d6e2790 Update template.md - added forgotten verb +19d6514d remove fmt.Println +802e6a11 Added windows cmd support +59001ca3 Fix handling of absent parameters for ssm backend +8419c708 AWS SSM - don't treat "ParameterNotFound" as a fatal error +0a09632a Add support for consul BasicAuth +adf8d486 Fix panic during Consul client creation +027be91f Update docker Multi-Stage build +376d3f99 fix etcdv3 client watch: reuse previous watch to avoid memory leak +f711530d fix(confd): etcd curl err when make integration + ### v0.14.0 95ba861f Replace godep with dep diff --git a/docs/installation.md b/docs/installation.md index 1fb359e7c..c69d7e04f 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.14.0/confd-0.14.0-darwin-amd64 +$ wget https://github.com/kelseyhightower/confd/releases/download/v0.15.0/confd-0.15.0-darwin-amd64 ``` #### Linux Download the binary ``` -$ wget https://github.com/kelseyhightower/confd/releases/download/v0.14.0/confd-0.14.0-linux-amd64 +$ wget https://github.com/kelseyhightower/confd/releases/download/v0.15.0/confd-0.15.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.14.0-linux-amd64 /opt/confd/bin/confd +mv confd-0.15.0-linux-amd64 /opt/confd/bin/confd chmod +x /opt/confd/bin/confd export PATH="$PATH:/opt/confd/bin" ``` @@ -48,7 +48,7 @@ With multi-stage builds you can keep the whole process contained in your Dockerf ``` FROM golang:1.9-alpine as confd -ARG CONFD_VERSION=0.14.0 +ARG CONFD_VERSION=0.15.0 ADD https://github.com/kelseyhightower/confd/archive/v${CONFD_VERSION}.tar.gz /tmp/ diff --git a/version.go b/version.go index 90ba205b8..28967b5a2 100644 --- a/version.go +++ b/version.go @@ -1,6 +1,6 @@ package main -const Version = "0.15.0-dev" +const Version = "0.15.0" // We want to replace this variable at build time with "-ldflags -X main.GitSHA=xxx", where const is not supported. var GitSHA = ""