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