From cc710aed39a1850f808d5b07f632faca993a04a1 Mon Sep 17 00:00:00 2001 From: James Phillips Date: Fri, 8 Sep 2017 11:13:20 -0700 Subject: [PATCH] Puts tree in 0.9.4 dev mode. --- CHANGELOG.md | 9 +++++++++ version/version.go | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 306132f013..0b4eca3004 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 0.9.4 (UNRELEASED) + +BREAKING CHANGES: + +FEATURES: + +IMPROVEMENTS: + +BUG FIXES: ## 0.9.3 (September 8, 2017) diff --git a/version/version.go b/version/version.go index d5b7c9122e..612c3c0982 100644 --- a/version/version.go +++ b/version/version.go @@ -15,12 +15,12 @@ var ( // // Version must conform to the format expected by github.com/hashicorp/go-version // for tests to work. - Version = "0.9.3" + Version = "0.9.4" // 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" ) // GetHumanVersion composes the parts of the version in a way that's suitable