From d844c1787c65aa3c831232f904477b2b866a2dab Mon Sep 17 00:00:00 2001 From: James Phillips Date: Wed, 24 Jan 2018 08:01:59 -0800 Subject: [PATCH] Puts the tree into 1.0.4 dev mode. --- CHANGELOG.md | 8 ++++++++ version/version.go | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eabb8f83e..d66b093ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.0.4 (UNRELEASED) + +FEATURES: + +IMPROVEMENTS: + +BUG FIXES: + ## 1.0.3 (January 24, 2018) SECURITY: diff --git a/version/version.go b/version/version.go index 2e6104413..8b6d79594 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.3" + Version = "1.0.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