From 7acc1d6dbc5542bf62b265d879bce4f52385bcda Mon Sep 17 00:00:00 2001 From: Kyle Havlovitz Date: Fri, 9 Feb 2018 10:25:58 -0800 Subject: [PATCH] Puts the tree back into dev mode --- CHANGELOG.md | 5 ++++- version/version.go | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ebab303c0..8e6b5ba95f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ -## 1.0.6 (February 9, 2018) ## +## (UNRELEASED) + + +## 1.0.6 (February 9, 2018) BUG FIXES: diff --git a/version/version.go b/version/version.go index bd1925c75d..6772ae695b 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 = "1.0.6" + Version = "1.0.7" // 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