From 9f76540c3a9ede7975ba51802153c6241f7e9882 Mon Sep 17 00:00:00 2001 From: i-norden Date: Mon, 27 Dec 2021 11:49:10 -0600 Subject: [PATCH] bump version, update license year --- cmd/version.go | 2 +- version/version.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/version.go b/cmd/version.go index 561a43e..280bf7e 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -1,5 +1,5 @@ // VulcanizeDB -// Copyright © 2019 Vulcanize +// Copyright © 2021 Vulcanize // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by diff --git a/version/version.go b/version/version.go index 0cbd7d9..90d85fa 100644 --- a/version/version.go +++ b/version/version.go @@ -21,10 +21,10 @@ import "fmt" const ( major = 0 // major version component of the current release minor = 2 // minor version component of the current release - patch = 10 // patch version component of the current release + patch = 11 // patch version component of the current release ) // Version holds the textual version string. var Version = func() string { return fmt.Sprintf("%d.%d.%d", major, minor, patch) -}() \ No newline at end of file +}()