File tree Expand file tree Collapse file tree 3 files changed +13
-5
lines changed
Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 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
311181e3e3 Update dependencies
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
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
1515Download 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```
1919Move the binary to an installation path, make it executable, and add to path
2020```
2121mkdir -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
2323chmod +x /opt/confd/bin/confd
2424export PATH="$PATH:/opt/confd/bin"
2525```
@@ -54,7 +54,7 @@ RUN mkdir -p /go/src/github.com/kelseyhightower/confd && \
5454
5555WORKDIR /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* && \
Original file line number Diff line number Diff line change 11package 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.
66var GitSHA = ""
You can’t perform that action at this time.
0 commit comments