Version bump for v0.2.0
This commit is contained in:
parent
de427cbda2
commit
84b4883509
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,7 +1,12 @@
|
|||
## 0.2.0 (unreleased)
|
||||
## 0.2.0 (May 1, 2014)
|
||||
|
||||
FEATURES:
|
||||
|
||||
* Adding Web UI for Consul. This is enabled by providing the `-ui-dir` flag
|
||||
with the path to the web directory. The UI is visited at the standard HTTP
|
||||
address (Defaults to http://127.0.0.1:8500/). There is a demo
|
||||
[available here](http://demo.consul.io).
|
||||
|
||||
* Adding new read consistency modes. `?consistent` can be used for strongly
|
||||
consistent reads without caveats. `?stale` can be used for stale reads to
|
||||
allow for higher throughput and read scalability. [GH-68]
|
||||
|
@ -9,6 +14,9 @@ FEATURES:
|
|||
* /v1/health/service/ endpoint can take an optional `?passing` flag
|
||||
to filter to only nodes with passing results. [GH-57]
|
||||
|
||||
* The KV endpoint suports listing keys with the `?keys` query parameter,
|
||||
and limited up to a seperator using `?seperator=`.
|
||||
|
||||
IMPROVEMENTS:
|
||||
|
||||
* Health check output goes into seperate `Output` field instead
|
||||
|
|
|
@ -7,7 +7,7 @@ sudo apt-get install -y unzip
|
|||
|
||||
echo Fetching Consul...
|
||||
cd /tmp/
|
||||
wget https://dl.bintray.com/mitchellh/consul/0.1.0_linux_amd64.zip -O consul.zip
|
||||
wget https://dl.bintray.com/mitchellh/consul/0.2.0_linux_amd64.zip -O consul.zip
|
||||
|
||||
echo Installing Consul...
|
||||
unzip consul.zip
|
||||
|
|
|
@ -4,9 +4,9 @@ package main
|
|||
var GitCommit string
|
||||
|
||||
// The main version number that is being run at the moment.
|
||||
const Version = "0.1.1"
|
||||
const Version = "0.2.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 = "dev"
|
||||
const VersionPrerelease = ""
|
||||
|
|
Loading…
Reference in New Issue