From 03983e2cdc697be5aebb47096c8b19e2a693390f Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Sat, 28 Oct 2017 22:30:23 -0400 Subject: [PATCH] version: master back to -dev Signed-off-by: Vincent Batts --- version.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/version.go b/version.go index 6274dad..ba089cb 100644 --- a/version.go +++ b/version.go @@ -11,12 +11,12 @@ const ( // VersionMajor is for an API incompatible changes VersionMajor = 0 // VersionMinor is for functionality in a backwards-compatible manner - VersionMinor = 4 + VersionMinor = 5 // VersionPatch is for backwards-compatible bug fixes - VersionPatch = 2 + VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "" + VersionDev = "-dev" ) // Version is the specification version that the package types support.