mirror of https://github.com/status-im/consul.git
Cutting v0.3.1
This commit is contained in:
parent
663bd102e7
commit
6c2ee5c842
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,14 +1,23 @@
|
||||||
## 0.3.1 (Unreleased)
|
## 0.3.1 (July 21, 2014)
|
||||||
|
|
||||||
|
FEATURES:
|
||||||
|
|
||||||
|
* Improved bootstrapping process, thanks to @robxu9
|
||||||
|
|
||||||
BUG FIXES:
|
BUG FIXES:
|
||||||
|
|
||||||
* Fixed issue with service re-registration [GH-216]
|
* Fixed issue with service re-registration [GH-216]
|
||||||
* Fixed handling of `-rejoin` flag
|
* Fixed handling of `-rejoin` flag
|
||||||
|
* Restored 0.2 TLS behavior, thanks to @nelhage [GH-233]
|
||||||
|
* Fix the statsite flags, thanks to @nelhage [GH-243]
|
||||||
|
* Fixed filters on criticial / non-passing checks [GH-241]
|
||||||
|
|
||||||
IMPROVEMENTS:
|
IMPROVEMENTS:
|
||||||
|
|
||||||
|
* UI Improvements
|
||||||
* Improved handling of Serf snapshot data
|
* Improved handling of Serf snapshot data
|
||||||
* Increase reliability of failure detector
|
* Increase reliability of failure detector
|
||||||
|
* More useful logging messages
|
||||||
|
|
||||||
|
|
||||||
## 0.3.0 (June 13, 2014)
|
## 0.3.0 (June 13, 2014)
|
||||||
|
|
|
@ -53,8 +53,8 @@
|
||||||
"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.3.0_linux_amd64.zip",
|
"wget https://dl.bintray.com/mitchellh/consul/0.3.1_linux_amd64.zip",
|
||||||
"unzip 0.3.0_linux_amd64.zip",
|
"unzip 0.3.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,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.3.0_linux_amd64.zip",
|
"wget https://dl.bintray.com/mitchellh/consul/0.3.1_linux_amd64.zip",
|
||||||
"unzip 0.3.0_linux_amd64.zip",
|
"unzip 0.3.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
|
||||||
|
|
||||||
echo Fetching Consul...
|
echo Fetching Consul...
|
||||||
cd /tmp/
|
cd /tmp/
|
||||||
wget https://dl.bintray.com/mitchellh/consul/0.3.0_linux_amd64.zip -O consul.zip
|
wget https://dl.bintray.com/mitchellh/consul/0.3.1_linux_amd64.zip -O consul.zip
|
||||||
|
|
||||||
echo Installing Consul...
|
echo Installing Consul...
|
||||||
unzip consul.zip
|
unzip consul.zip
|
||||||
|
|
|
@ -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.3.0"
|
const Version = "0.3.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…
Reference in New Issue