Skip to content

Commit

Permalink
bump to v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
okushchenko committed Oct 10, 2017
1 parent 95ba861 commit 9fab963
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### v0.14.0

95ba861f Replace godep with dep
cb53644c Template integration with https://github.com/xordataexchange/crypt provided values
6da43945 add go version and git commit sha1 to version string
8f052819 yaml/json file backend
61652a2c Add AWS SSM Parameter Store backend

### v0.13.0

181e3e3 Update dependencies
Expand Down
8 changes: 4 additions & 4 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ Currently confd ships binaries for OS X and Linux 64bit systems. You can downloa
#### OS X

```
$ wget https://github.com/kelseyhightower/confd/releases/download/v0.13.0/confd-0.13.0-darwin-amd64
$ wget https://github.com/kelseyhightower/confd/releases/download/v0.14.0/confd-0.14.0-darwin-amd64
```

#### Linux

Download the binary
```
$ wget https://github.com/kelseyhightower/confd/releases/download/v0.13.0/confd-0.13.0-linux-amd64
$ wget https://github.com/kelseyhightower/confd/releases/download/v0.14.0/confd-0.14.0-linux-amd64
```
Move the binary to an installation path, make it executable, and add to path
```
mkdir -p /opt/confd/bin
mv confd-0.13.0-linux-amd64 /opt/confd/bin/confd
mv confd-0.14.0-linux-amd64 /opt/confd/bin/confd
chmod +x /opt/confd/bin/confd
export PATH="$PATH:/opt/confd/bin"
```
Expand Down Expand Up @@ -54,7 +54,7 @@ RUN mkdir -p /go/src/github.com/kelseyhightower/confd && \
WORKDIR /app
RUN wget -O /tmp/confd.zip https://github.com/kelseyhightower/confd/archive/v0.13.0.zip && \
RUN wget -O /tmp/confd.zip https://github.com/kelseyhightower/confd/archive/v0.14.0.zip && \
unzip -d /tmp/confd /tmp/confd.zip && \
cp -r /tmp/confd/*/* /app && \
rm -rf /tmp/confd* && \
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

const Version = "0.14.0-dev"
const Version = "0.14.0"

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

0 comments on commit 9fab963

Please sign in to comment.