Skip to content

Commit

Permalink
bump to v0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
okushchenko committed May 4, 2018
1 parent 28f7260 commit 7217b0c
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
### v0.16.0

28f72608 Release arm64 binaries
4528af01 Add option to specify auth backend mount path in Vault
b51998d6 new etcdv3 implementation
fa37c993 isFileExist() was not defined in windows
a23aa1c7 Update Vault Kubernetes authentication doc
9b0ce8e6 Fix vendor name for logrus
ccc17eb5 fix fileStat close when open failed on windows
e3864219 add parseBool to template_funcs
94bf80e7 Add Kubernetes auth for Vault backend
304efb5a Add AppRole authN for Vault backend
fb208461 Redis Backend Updates: WatchPrefix Support, Hash Support, Standard Redis Key Naming Convention
36d874f5 Fix bug with multiple watches for etcdv3
1fd12493 backend/etcd: add scheme to srv discovered endpoints
a88c922a Vault TLS certificates auth method
b77b9232 Add atoi function to template funcs and test

### v0.15.0

0c4cb29e Don't pass empty prefix to zookeeper nodeWalk
Expand Down
8 changes: 4 additions & 4 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.15.0/confd-0.15.0-darwin-amd64
$ wget https://github.com/kelseyhightower/confd/releases/download/v0.16.0/confd-0.16.0-darwin-amd64
```

#### Linux

Download the binary
```
$ wget https://github.com/kelseyhightower/confd/releases/download/v0.15.0/confd-0.15.0-linux-amd64
$ wget https://github.com/kelseyhightower/confd/releases/download/v0.16.0/confd-0.16.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.15.0-linux-amd64 /opt/confd/bin/confd
mv confd-0.16.0-linux-amd64 /opt/confd/bin/confd
chmod +x /opt/confd/bin/confd
export PATH="$PATH:/opt/confd/bin"
```
Expand Down Expand Up @@ -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.15.0
ARG CONFD_VERSION=0.16.0
ADD https://github.com/kelseyhightower/confd/archive/v${CONFD_VERSION}.tar.gz /tmp/
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

const Version = "0.16.0-dev"
const Version = "0.16.0"

// We want to replace this variable at build time with "-ldflags -X main.GitSHA=xxx", where const is not supported.
var GitSHA = ""

0 comments on commit 7217b0c

Please sign in to comment.