diff --git a/CHANGELOG.md b/CHANGELOG.md index 460c2c2331..bddbcd678a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.6.2 (UNRELEASED) + +BUG FIXES: + +* Fixed an issue when running Consul as PID 1 in a Docker container where + it could consume CPU and show spurious failures for health checks, watch + handlers, and `consul exec` commands [GH-1592] + ## 0.6.1 (January 6, 2015) BACKWARDS INCOMPATIBILITIES: diff --git a/version.go b/version.go index 36bbc4233e..e9d2a8b247 100644 --- a/version.go +++ b/version.go @@ -7,7 +7,7 @@ var ( ) // The main version number that is being run at the moment. -const Version = "0.6.1" +const Version = "0.6.2" // 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