From 20ac8ac86740d099fa66c31112634f66cc1f5582 Mon Sep 17 00:00:00 2001 From: Harvey Kandola Date: Mon, 3 Apr 2017 16:40:20 +0100 Subject: [PATCH] bumped version cycle to 1.0.0 --- core/api/endpoint/server.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/api/endpoint/server.go b/core/api/endpoint/server.go index 513b77e9..f70bfc60 100644 --- a/core/api/endpoint/server.go +++ b/core/api/endpoint/server.go @@ -33,9 +33,9 @@ var port, certFile, keyFile, forcePort2SSL string var Product core.ProdInfo func init() { - Product.Major = "0" - Product.Minor = "44" - Product.Patch = "1" + Product.Major = "1" + Product.Minor = "0" + Product.Patch = "0" Product.Version = fmt.Sprintf("%s.%s.%s", Product.Major, Product.Minor, Product.Patch) Product.Edition = "Community" Product.Title = fmt.Sprintf("%s Edition", Product.Edition)