diff --git a/CHANGELOG.md b/CHANGELOG.md index aaba68751..46bc224c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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: diff --git a/bench/bench-aws.json b/bench/bench-aws.json index b9623dc64..41a35cb55 100644 --- a/bench/bench-aws.json +++ b/bench/bench-aws.json @@ -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" diff --git a/bench/bench.json b/bench/bench.json index 7d50d80f0..c977f7a96 100644 --- a/bench/bench.json +++ b/bench/bench.json @@ -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" diff --git a/demo/vagrant-cluster/Vagrantfile b/demo/vagrant-cluster/Vagrantfile index 99bb3c5e7..5da2d6d05 100644 --- a/demo/vagrant-cluster/Vagrantfile +++ b/demo/vagrant-cluster/Vagrantfile @@ -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 diff --git a/terraform/aws/scripts/install.sh b/terraform/aws/scripts/install.sh index 0686b2e23..7c924f3ed 100644 --- a/terraform/aws/scripts/install.sh +++ b/terraform/aws/scripts/install.sh @@ -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 diff --git a/version.go b/version.go index 5c4a8e076..1683cdebe 100644 --- a/version.go +++ b/version.go @@ -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 = "" diff --git a/website/config.rb b/website/config.rb index a12948017..a25c14778 100644 --- a/website/config.rb +++ b/website/config.rb @@ -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']