Skip to content

Commit 9fab963

Browse files
committed
bump to v0.14.0
1 parent 95ba861 commit 9fab963

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

CHANGELOG

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### v0.14.0
2+
3+
95ba861f Replace godep with dep
4+
cb53644c Template integration with https://github.com/xordataexchange/crypt provided values
5+
6da43945 add go version and git commit sha1 to version string
6+
8f052819 yaml/json file backend
7+
61652a2c Add AWS SSM Parameter Store backend
8+
19
### v0.13.0
210

311
181e3e3 Update dependencies

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

1313
#### Linux
1414

1515
Download the binary
1616
```
17-
$ wget https://github.com/kelseyhightower/confd/releases/download/v0.13.0/confd-0.13.0-linux-amd64
17+
$ wget https://github.com/kelseyhightower/confd/releases/download/v0.14.0/confd-0.14.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.13.0-linux-amd64 /opt/confd/bin/confd
22+
mv confd-0.14.0-linux-amd64 /opt/confd/bin/confd
2323
chmod +x /opt/confd/bin/confd
2424
export PATH="$PATH:/opt/confd/bin"
2525
```
@@ -54,7 +54,7 @@ RUN mkdir -p /go/src/github.com/kelseyhightower/confd && \
5454
5555
WORKDIR /app
5656
57-
RUN wget -O /tmp/confd.zip https://github.com/kelseyhightower/confd/archive/v0.13.0.zip && \
57+
RUN wget -O /tmp/confd.zip https://github.com/kelseyhightower/confd/archive/v0.14.0.zip && \
5858
unzip -d /tmp/confd /tmp/confd.zip && \
5959
cp -r /tmp/confd/*/* /app && \
6060
rm -rf /tmp/confd* && \

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