Skip to content

Commit

Permalink
Version bump for v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
armon committed May 1, 2014
1 parent db12be5 commit 0459237
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
## 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]

* /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
Expand Down
2 changes: 1 addition & 1 deletion demo/vagrant-cluster/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ""

0 comments on commit 0459237

Please sign in to comment.