diff --git a/CHANGELOG b/CHANGELOG index 22c021a3f..ac708f6d8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,14 @@ +### v0.11.0 + +46d3c69 load template resources every interval +6b01b27 Add Rancher Metadata backend +bec0b60 link to the right command-line-flags doc +be20ca7 Fix typo in templates.md +745cf2b add default node for zookeeper backend +0dd4c53 Add StackEngine backend support +f446ce4 Load AWS credentials through a provider chain +f206b47 Add strings.Replace support + ### v0.10.0 70cf76a move contrib to root dir diff --git a/docs/installation.md b/docs/installation.md index a658af067..8e3c5dffa 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -7,13 +7,13 @@ 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.10.0/confd-0.10.0-darwin-amd64 +$ wget https://github.com/kelseyhightower/confd/releases/download/v0.11.0/confd-0.11.0-darwin-amd64 ``` #### Linux ``` -$ wget https://github.com/kelseyhightower/confd/releases/download/v0.10.0/confd-0.10.0-linux-amd64 +$ wget https://github.com/kelseyhightower/confd/releases/download/v0.11.0/confd-0.11.0-linux-amd64 ``` #### Building from Source diff --git a/src/github.com/kelseyhightower/confd/version.go b/src/github.com/kelseyhightower/confd/version.go index 425b0b0f5..99b0c1638 100644 --- a/src/github.com/kelseyhightower/confd/version.go +++ b/src/github.com/kelseyhightower/confd/version.go @@ -1,3 +1,3 @@ package main -const Version = "0.11.0-dev" +const Version = "0.11.0"