From 4e3b9264a330d094b0386c3703c5f379119711e8 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Fri, 8 Sep 2017 11:29:41 -0400 Subject: [PATCH] version: release 1.0.1 Signed-off-by: Vincent Batts --- specs-go/version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specs-go/version.go b/specs-go/version.go index d1388dae2..ff0cb6a80 100644 --- a/specs-go/version.go +++ b/specs-go/version.go @@ -8,10 +8,10 @@ const ( // VersionMinor is for functionality in a backwards-compatible manner VersionMinor = 0 // VersionPatch is for backwards-compatible bug fixes - VersionPatch = 0 + VersionPatch = 1 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "-dev" + VersionDev = "" ) // Version is the specification version that the package types support.