From dd87449b663f758e3be52539c1e89ee0c3a8ad53 Mon Sep 17 00:00:00 2001 From: Armon Dadgar Date: Tue, 20 May 2014 12:36:08 -0700 Subject: [PATCH] Cutting v0.2.1 --- CHANGELOG.md | 2 +- bench/bench.json | 4 ++-- demo/vagrant-cluster/Vagrantfile | 2 +- version.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa50af84b..1051ad1e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.2.1 (unreleased) +## 0.2.1 (May 20, 2014) IMPROVEMENTS: diff --git a/bench/bench.json b/bench/bench.json index b02101fbe..492cca5fd 100644 --- a/bench/bench.json +++ b/bench/bench.json @@ -47,8 +47,8 @@ "mkdir /etc/consul.d", "apt-get update", "apt-get install unzip make", - "wget https://dl.bintray.com/mitchellh/consul/0.2.0_linux_amd64.zip", - "unzip 0.2.0_linux_amd64.zip", + "wget https://dl.bintray.com/mitchellh/consul/0.2.1_linux_amd64.zip", + "unzip 0.2.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 e14b21672..6ed380f97 100644 --- a/demo/vagrant-cluster/Vagrantfile +++ b/demo/vagrant-cluster/Vagrantfile @@ -7,7 +7,7 @@ sudo apt-get install -y unzip echo Fetching Consul... cd /tmp/ -wget https://dl.bintray.com/mitchellh/consul/0.2.0_linux_amd64.zip -O consul.zip +wget https://dl.bintray.com/mitchellh/consul/0.2.1_linux_amd64.zip -O consul.zip echo Installing Consul... unzip consul.zip diff --git a/version.go b/version.go index e7eb70dba..7603ebd62 100644 --- a/version.go +++ b/version.go @@ -4,7 +4,7 @@ package main var GitCommit string // The main version number that is being run at the moment. -const Version = "0.2.0" +const Version = "0.2.1" // 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