Skip to content

Commit 755e54d

Browse files
committed
bump to v0.15.0
1 parent 0c4cb29 commit 755e54d

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

CHANGELOG

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
### v0.15.0
2+
3+
0c4cb29e Don't pass empty prefix to zookeeper nodeWalk
4+
5d6e2790 Update template.md - added forgotten verb
5+
19d6514d remove fmt.Println
6+
802e6a11 Added windows cmd support
7+
59001ca3 Fix handling of absent parameters for ssm backend
8+
8419c708 AWS SSM - don't treat "ParameterNotFound" as a fatal error
9+
0a09632a Add support for consul BasicAuth
10+
adf8d486 Fix panic during Consul client creation
11+
027be91f Update docker Multi-Stage build
12+
376d3f99 fix etcdv3 client watch: reuse previous watch to avoid memory leak
13+
f711530d fix(confd): etcd curl err when make integration
14+
115
### v0.14.0
216

317
95ba861f Replace godep with dep

docs/installation.md

+4-4
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.14.0/confd-0.14.0-darwin-amd64
10+
$ wget https://github.com/kelseyhightower/confd/releases/download/v0.15.0/confd-0.15.0-darwin-amd64
1111
```
1212

1313
#### Linux
1414

1515
Download the binary
1616
```
17-
$ wget https://github.com/kelseyhightower/confd/releases/download/v0.14.0/confd-0.14.0-linux-amd64
17+
$ wget https://github.com/kelseyhightower/confd/releases/download/v0.15.0/confd-0.15.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.14.0-linux-amd64 /opt/confd/bin/confd
22+
mv confd-0.15.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.14.0
51+
ARG CONFD_VERSION=0.15.0
5252
5353
ADD https://github.com/kelseyhightower/confd/archive/v${CONFD_VERSION}.tar.gz /tmp/
5454

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package main
22

3-
const Version = "0.15.0-dev"
3+
const Version = "0.15.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)