From 84b48835090c78dc703d730e090e23e879726eba Mon Sep 17 00:00:00 2001 From: Armon Dadgar Date: Thu, 1 May 2014 10:28:34 -0700 Subject: [PATCH] Version bump for v0.2.0 --- CHANGELOG.md | 10 +++++++++- demo/vagrant-cluster/Vagrantfile | 2 +- version.go | 4 ++-- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd14e3dea..df432bc64 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/demo/vagrant-cluster/Vagrantfile b/demo/vagrant-cluster/Vagrantfile index 8835026ec..e14b21672 100644 --- a/demo/vagrant-cluster/Vagrantfile +++ b/demo/vagrant-cluster/Vagrantfile @@ -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 diff --git a/version.go b/version.go index e2ae58829..e7eb70dba 100644 --- a/version.go +++ b/version.go @@ -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 = ""