File tree 3 files changed +19
-5
lines changed
3 files changed +19
-5
lines changed Original file line number Diff line number Diff line change
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
+
1
15
### v0.14.0
2
16
3
17
95ba861f Replace godep with dep
Original file line number Diff line number Diff line change @@ -7,19 +7,19 @@ Currently confd ships binaries for OS X and Linux 64bit systems. You can downloa
7
7
#### OS X
8
8
9
9
```
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
11
11
```
12
12
13
13
#### Linux
14
14
15
15
Download the binary
16
16
```
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
18
18
```
19
19
Move the binary to an installation path, make it executable, and add to path
20
20
```
21
21
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
23
23
chmod +x /opt/confd/bin/confd
24
24
export PATH="$PATH:/opt/confd/bin"
25
25
```
@@ -48,7 +48,7 @@ With multi-stage builds you can keep the whole process contained in your Dockerf
48
48
```
49
49
FROM golang:1.9-alpine as confd
50
50
51
- ARG CONFD_VERSION=0.14 .0
51
+ ARG CONFD_VERSION=0.15 .0
52
52
53
53
ADD https://github.com/kelseyhightower/confd/archive/v${CONFD_VERSION}.tar.gz /tmp/
54
54
Original file line number Diff line number Diff line change 1
1
package main
2
2
3
- const Version = "0.15.0-dev "
3
+ const Version = "0.15.0"
4
4
5
5
// We want to replace this variable at build time with "-ldflags -X main.GitSHA=xxx", where const is not supported.
6
6
var GitSHA = ""
You can’t perform that action at this time.
0 commit comments