diff --git a/CHANGELOG.md b/CHANGELOG.md index fdbdd7c4b..7e8479b87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.8.3 (UNRELEASED) + +FEATURES: + +IMPROVEMENTS: + +BUG FIXES: + ## 0.8.2 (May 9, 2017) IMPROVEMENTS: @@ -22,8 +30,6 @@ BUG FIXES: ## 0.8.1 (April 17, 2017) -FEATURES: - IMPROVEMENTS: * agent: Node IDs derived from host information are now hashed to prevent things like common server hardware from generating IDs with a common prefix across nodes. [GH-2884] diff --git a/version/version_base.go b/version/version_base.go index 621651335..76cd2b34e 100644 --- a/version/version_base.go +++ b/version/version_base.go @@ -7,10 +7,10 @@ package version // adding new versions and pick a name that will follow "version_base.go". func init() { // The main version number that is being run at the moment. - Version = "0.8.2" + Version = "0.8.3" // 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. - VersionPrerelease = "" + VersionPrerelease = "dev" }