From 8bcd48e401fbb9334aebe3e655c1f2d2fa173918 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Fri, 29 Sep 2017 11:43:50 -0400 Subject: [PATCH] bump 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 c6b79cd..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 = 1 + VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "" + VersionDev = "-dev" ) // Version is the specification version that the package types support.