Cut v0.5.0
This commit is contained in:
parent
6cf05b0aa5
commit
30607a97d2
|
@ -1,4 +1,4 @@
|
|||
## 0.5.0 (Unreleased)
|
||||
## 0.5.0 (Febuary 19, 2015)
|
||||
|
||||
FEATURES:
|
||||
|
||||
|
@ -44,6 +44,7 @@ BUG FIXES:
|
|||
* Fixed string of rpc error: rpc error: ... no known leader. [GH-611]
|
||||
* Fixed panic in `exec` during cancelation
|
||||
* Fixed health check state reset caused by SIGHUP [GH-693]
|
||||
* Fixed bug in UI when multiple datacenters exist.
|
||||
|
||||
IMPROVEMENTS:
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
"sudo mkdir /etc/consul.d",
|
||||
"sudo apt-get update",
|
||||
"sudo apt-get install unzip make",
|
||||
"wget https://dl.bintray.com/mitchellh/consul/0.4.1_linux_amd64.zip",
|
||||
"wget https://dl.bintray.com/mitchellh/consul/0.5.0_linux_amd64.zip",
|
||||
"unzip 0.4.1_linux_amd64.zip",
|
||||
"sudo mv consul /usr/local/bin/consul",
|
||||
"chmod +x /usr/local/bin/consul"
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
"mkdir /etc/consul.d",
|
||||
"apt-get update",
|
||||
"apt-get install unzip make",
|
||||
"wget https://dl.bintray.com/mitchellh/consul/0.4.1_linux_amd64.zip",
|
||||
"wget https://dl.bintray.com/mitchellh/consul/0.5.0_linux_amd64.zip",
|
||||
"unzip 0.4.1_linux_amd64.zip",
|
||||
"mv consul /usr/local/bin/consul",
|
||||
"chmod +x /usr/local/bin/consul"
|
||||
|
|
|
@ -7,7 +7,7 @@ sudo apt-get install -y unzip curl
|
|||
|
||||
echo Fetching Consul...
|
||||
cd /tmp/
|
||||
wget https://dl.bintray.com/mitchellh/consul/0.4.1_linux_amd64.zip -O consul.zip
|
||||
wget https://dl.bintray.com/mitchellh/consul/0.5.0_linux_amd64.zip -O consul.zip
|
||||
|
||||
echo Installing Consul...
|
||||
unzip consul.zip
|
||||
|
|
|
@ -10,7 +10,7 @@ sudo apt-get install -y unzip
|
|||
|
||||
echo "Fetching Consul..."
|
||||
cd /tmp
|
||||
wget https://dl.bintray.com/mitchellh/consul/0.4.1_linux_amd64.zip -O consul.zip
|
||||
wget https://dl.bintray.com/mitchellh/consul/0.5.0_linux_amd64.zip -O consul.zip
|
||||
|
||||
echo "Installing Consul..."
|
||||
unzip consul.zip >/dev/null
|
||||
|
|
|
@ -10,4 +10,4 @@ const Version = "0.5.0"
|
|||
// A pre-release marker for the version. If this is "" (empty string)
|
||||
// then it means that it is a final release. Otherwise, this is a pre-release
|
||||
// such as "dev" (in development), "beta", "rc1", etc.
|
||||
const VersionPrerelease = "rc1"
|
||||
const VersionPrerelease = ""
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
set :base_url, "https://www.consul.io/"
|
||||
|
||||
activate :hashicorp do |h|
|
||||
h.version = '0.4.1'
|
||||
h.version = '0.5.0'
|
||||
h.bintray_repo = 'mitchellh/consul'
|
||||
h.bintray_user = 'mitchellh'
|
||||
h.bintray_key = ENV['BINTRAY_API_KEY']
|
||||
|
|
Loading…
Reference in New Issue