Skip to content

Commit 7217b0c

Browse files
committed
bump to v0.16.0
1 parent 28f7260 commit 7217b0c

File tree

3 files changed

+23
-5
lines changed

3 files changed

+23
-5
lines changed

CHANGELOG

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
### v0.16.0
2+
3+
28f72608 Release arm64 binaries
4+
4528af01 Add option to specify auth backend mount path in Vault
5+
b51998d6 new etcdv3 implementation
6+
fa37c993 isFileExist() was not defined in windows
7+
a23aa1c7 Update Vault Kubernetes authentication doc
8+
9b0ce8e6 Fix vendor name for logrus
9+
ccc17eb5 fix fileStat close when open failed on windows
10+
e3864219 add parseBool to template_funcs
11+
94bf80e7 Add Kubernetes auth for Vault backend
12+
304efb5a Add AppRole authN for Vault backend
13+
fb208461 Redis Backend Updates: WatchPrefix Support, Hash Support, Standard Redis Key Naming Convention
14+
36d874f5 Fix bug with multiple watches for etcdv3
15+
1fd12493 backend/etcd: add scheme to srv discovered endpoints
16+
a88c922a Vault TLS certificates auth method
17+
b77b9232 Add atoi function to template funcs and test
18+
119
### v0.15.0
220

321
0c4cb29e Don't pass empty prefix to zookeeper nodeWalk

docs/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ Currently confd ships binaries for OS X and Linux 64bit systems. You can downloa
77
#### OS X
88

99
```
10-
$ wget https://github.com/kelseyhightower/confd/releases/download/v0.15.0/confd-0.15.0-darwin-amd64
10+
$ wget https://github.com/kelseyhightower/confd/releases/download/v0.16.0/confd-0.16.0-darwin-amd64
1111
```
1212

1313
#### Linux
1414

1515
Download the binary
1616
```
17-
$ wget https://github.com/kelseyhightower/confd/releases/download/v0.15.0/confd-0.15.0-linux-amd64
17+
$ wget https://github.com/kelseyhightower/confd/releases/download/v0.16.0/confd-0.16.0-linux-amd64
1818
```
1919
Move the binary to an installation path, make it executable, and add to path
2020
```
2121
mkdir -p /opt/confd/bin
22-
mv confd-0.15.0-linux-amd64 /opt/confd/bin/confd
22+
mv confd-0.16.0-linux-amd64 /opt/confd/bin/confd
2323
chmod +x /opt/confd/bin/confd
2424
export PATH="$PATH:/opt/confd/bin"
2525
```
@@ -48,7 +48,7 @@ With multi-stage builds you can keep the whole process contained in your Dockerf
4848
```
4949
FROM golang:1.9-alpine as confd
5050
51-
ARG CONFD_VERSION=0.15.0
51+
ARG CONFD_VERSION=0.16.0
5252
5353
ADD https://github.com/kelseyhightower/confd/archive/v${CONFD_VERSION}.tar.gz /tmp/
5454

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package main
22

3-
const Version = "0.16.0-dev"
3+
const Version = "0.16.0"
44

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

0 commit comments

Comments
 (0)