Browse Source

Cutting v0.2.1

pull/161/head v0.2.1
Armon Dadgar 11 years ago
parent
commit
765286e45f
  1. 2
      CHANGELOG.md
  2. 4
      bench/bench.json
  3. 2
      demo/vagrant-cluster/Vagrantfile
  4. 2
      version.go

2
CHANGELOG.md

@ -1,4 +1,4 @@
## 0.2.1 (unreleased) ## 0.2.1 (May 20, 2014)
IMPROVEMENTS: IMPROVEMENTS:

4
bench/bench.json

@ -47,8 +47,8 @@
"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.2.0_linux_amd64.zip", "wget https://dl.bintray.com/mitchellh/consul/0.2.1_linux_amd64.zip",
"unzip 0.2.0_linux_amd64.zip", "unzip 0.2.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"
] ]

2
demo/vagrant-cluster/Vagrantfile vendored

@ -7,7 +7,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.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... echo Installing Consul...
unzip consul.zip unzip consul.zip

2
version.go

@ -4,7 +4,7 @@ package main
var GitCommit string var GitCommit string
// The main version number that is being run at the moment. // 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) // 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

Loading…
Cancel
Save