2020-02-25 22:38:27 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2019 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
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2020-04-13 18:16:28 +00:00
|
|
|
package version
|
2020-02-25 22:38:27 +00:00
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
const (
|
2020-04-17 21:59:25 +00:00
|
|
|
VersionMajor = 0 // Major version component of the current release
|
|
|
|
VersionMinor = 1 // Minor version component of the current release
|
|
|
|
VersionPatch = 0 // Patch version component of the current release
|
2020-02-25 22:38:27 +00:00
|
|
|
VersionMeta = "alpha" // Version metadata to append to the version string
|
|
|
|
)
|
|
|
|
|
|
|
|
// Version holds the textual version string.
|
|
|
|
var Version = func() string {
|
|
|
|
return fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionPatch)
|
|
|
|
}()
|
|
|
|
|
|
|
|
// VersionWithMeta holds the textual version string including the metadata.
|
|
|
|
var VersionWithMeta = func() string {
|
|
|
|
v := Version
|
|
|
|
if VersionMeta != "" {
|
|
|
|
v += "-" + VersionMeta
|
|
|
|
}
|
|
|
|
return v
|
|
|
|
}()
|