Browse Source

Cutting v0.4.0

pull/324/head v0.4.0
Armon Dadgar 10 years ago
parent
commit
e1d87dee26
  1. 2
      CHANGELOG.md
  2. 4
      bench/bench-aws.json
  3. 4
      bench/bench.json
  4. 2
      demo/vagrant-cluster/Vagrantfile
  5. 2
      version.go

2
CHANGELOG.md

@ -1,4 +1,4 @@
## 0.4.0 (Unreleased)
## 0.4.0 (September 5, 2014)
FEATURES:

4
bench/bench-aws.json

@ -53,8 +53,8 @@
"sudo mkdir /etc/consul.d",
"sudo apt-get update",
"sudo apt-get install unzip make",
"wget https://dl.bintray.com/mitchellh/consul/0.3.1_linux_amd64.zip",
"unzip 0.3.1_linux_amd64.zip",
"wget https://dl.bintray.com/mitchellh/consul/0.4.0_linux_amd64.zip",
"unzip 0.4.0_linux_amd64.zip",
"sudo mv consul /usr/local/bin/consul",
"chmod +x /usr/local/bin/consul"
]

4
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.3.1_linux_amd64.zip",
"unzip 0.3.1_linux_amd64.zip",
"wget https://dl.bintray.com/mitchellh/consul/0.4.0_linux_amd64.zip",
"unzip 0.4.0_linux_amd64.zip",
"mv consul /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...
cd /tmp/
wget https://dl.bintray.com/mitchellh/consul/0.3.1_linux_amd64.zip -O consul.zip
wget https://dl.bintray.com/mitchellh/consul/0.4.0_linux_amd64.zip -O consul.zip
echo Installing Consul...
unzip consul.zip

2
version.go

@ -9,4 +9,4 @@ const Version = "0.4.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 = "rc"
const VersionPrerelease = ""

Loading…
Cancel
Save