From e34c4f37a7f37ef23d21f335a2ee0a2297570f71 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Thu, 30 Apr 2020 18:38:31 -0400 Subject: [PATCH] version: bump master back to -dev Signed-off-by: Vincent Batts --- version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version.go b/version.go index 75a2bca..8ba2684 100644 --- a/version.go +++ b/version.go @@ -13,10 +13,10 @@ const ( // VersionMinor is for functionality in a backwards-compatible manner VersionMinor = 5 // VersionPatch is for backwards-compatible bug fixes - VersionPatch = 0 + VersionPatch = 1 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "" + VersionDev = "-dev" ) // Version is the specification version that the package types support.