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 (
|
2024-04-18 10:12:39 +00:00
|
|
|
Major = 5 // Major version component of the current release
|
|
|
|
Minor = 2 // Minor version component of the current release
|
|
|
|
Patch = 0 // Patch version component of the current release
|
|
|
|
Meta = "" // Version metadata to append to the version string
|
2020-02-25 22:38:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Version holds the textual version string.
|
|
|
|
var Version = func() string {
|
2020-05-02 05:02:05 +00:00
|
|
|
return fmt.Sprintf("%d.%d.%d", Major, Minor, Patch)
|
2020-02-25 22:38:27 +00:00
|
|
|
}()
|
|
|
|
|
|
|
|
// VersionWithMeta holds the textual version string including the metadata.
|
|
|
|
var VersionWithMeta = func() string {
|
|
|
|
v := Version
|
2020-05-02 05:02:05 +00:00
|
|
|
if Meta != "" {
|
|
|
|
v += "-" + Meta
|
2020-02-25 22:38:27 +00:00
|
|
|
}
|
|
|
|
return v
|
|
|
|
}()
|