From 7217aba5f0868a558def688d43a24c870a34b223 Mon Sep 17 00:00:00 2001 From: James Bardin Date: Wed, 31 Jan 2018 21:00:32 +0000 Subject: [PATCH] release: clean up after v0.11.3 --- CHANGELOG.md | 3 +++ version/version.go | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52e8e13e1..55b1f8042 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.11.4 (Unreleased) + + ## 0.11.3 (January 31, 2018) IMPROVEMENTS: diff --git a/version/version.go b/version/version.go index 8cfa82d69..59ae5a9cb 100644 --- a/version/version.go +++ b/version/version.go @@ -11,12 +11,12 @@ import ( ) // The main version number that is being run at the moment. -const Version = "0.11.3" +const Version = "0.11.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. -var Prerelease = "" +var Prerelease = "dev" // SemVer is an instance of version.Version. This has the secondary // benefit of verifying during tests and init time that our version is a