Skip to content
This repository has been archived by the owner on Jan 16, 2025. It is now read-only.

Commit

Permalink
Merge pull request #6 from Fitbit/official-0.16-release
Browse files Browse the repository at this point in the history
Making a 0.16.0 release to properly by used with modules
  • Loading branch information
m-racine authored Nov 9, 2023
2 parents 42167c3 + 53767f5 commit 8dfd0f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ Currently confd ships binaries for OS X and Linux 64bit systems. You can downloa
#### OS X

```
$ wget https://github.com/fitbit/confd/releases/download/v0.15.0/confd-0.15.0-darwin-amd64
$ wget https://github.com/fitbit/confd/releases/download/v0.16.0/confd-0.16.0-darwin-amd64
```

#### Linux

Download the binary
```
$ wget https://github.com/fitbit/confd/releases/download/v0.15.0/confd-0.15.0-linux-amd64
$ wget https://github.com/fitbit/confd/releases/download/v0.16.0/confd-0.16.0-linux-amd64
```
Move the binary to an installation path, make it executable, and add to path
```
Expand Down Expand Up @@ -48,7 +48,7 @@ With multi-stage builds you can keep the whole process contained in your Dockerf
```
FROM golang:1.9-alpine as confd
ARG CONFD_VERSION=0.16.1-metadata-dev
ARG CONFD_VERSION=0.16.0
ADD https://github.com/fitbit/confd/archive/v${CONFD_VERSION}.tar.gz /tmp/
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.16.1-metadata-dev"
const Version = "0.16.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 8dfd0f4

Please sign in to comment.