diff --git a/CHANGELOG b/CHANGELOG index cb3a86676..420372841 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,20 @@ +### v0.13.0 + +181e3e3 Update dependencies +509268d Remove StackEngine backend +3a61969 Add further installation instructions +dd47bbb Introducing WaitPrefix for the Rancher backend +35ffe8f Adding nested key support to Vault backend v2 +f1833a6 ETCD V3 support +89c59d4 Feature new template func add +2b080af added some additional text/template sorting methods +fbea3b9 Fixes #562 by not adding the URL scheme to the node at DNS lookup time +ab93ff1 Windows support +695e62e add trimSuffix template function +3049df8 Add base64 encode/decode template helpers +485b31c improved etcd watch support +8528d3c added support to specify a redis database (in the connection string) + ### v0.12.0 5f3f79d Change etcd node port because the official port of etcd is 2379 diff --git a/docs/installation.md b/docs/installation.md index 62172d450..31b8e8216 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -7,20 +7,20 @@ 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.12.0/confd-0.12.0-darwin-amd64 +$ wget https://github.com/kelseyhightower/confd/releases/download/v0.13.0/confd-0.13.0-darwin-amd64 ``` #### Linux Download the binary ``` -$ wget https://github.com/kelseyhightower/confd/releases/download/v0.12.0/confd-0.12.0-linux-amd64 +$ wget https://github.com/kelseyhightower/confd/releases/download/v0.13.0/confd-0.13.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.12.0-linux-amd64 /opt/confd/bin/confd -chmod +x /opt/confd/bin/confd +mv confd-0.13.0-linux-amd64 /opt/confd/bin/confd +chmod +x /opt/confd/bin/confd export PATH="$PATH:/opt/confd/bin" ``` @@ -43,7 +43,7 @@ The above docker commands will produce binary in the local bin directory. #### Build for your Image using Multi-Stage build -With multi-stage builds you can keep the whole process contained in your Dockerfile using: +With multi-stage builds you can keep the whole process contained in your Dockerfile using: ``` FROM alpine:3.6 as confd @@ -58,7 +58,7 @@ RUN apk --update add unzip curl go bash && \ WORKDIR /app -RUN curl -L https://github.com/kelseyhightower/confd/archive/v0.12.0-alpha3.zip --output /tmp/confd.zip && \ +RUN curl -L https://github.com/kelseyhightower/confd/archive/v0.13.0.zip --output /tmp/confd.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 cb8705644..bcc13ff33 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package main -const Version = "0.13.0-dev" +const Version = "0.13.0"