Skip to content

Commit

Permalink
bump to v0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
okushchenko committed Aug 20, 2017
1 parent 181e3e3 commit 2d1d387
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 7 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 6 additions & 6 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```

Expand All @@ -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
Expand All @@ -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* && \
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package main

const Version = "0.13.0-dev"
const Version = "0.13.0"

0 comments on commit 2d1d387

Please sign in to comment.