bump version, update license year

This commit is contained in:
i-norden 2021-12-27 11:49:10 -06:00
parent 3725006984
commit 9f76540c3a
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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)
}()
}()