Updated version constants, 0.4.1 release

This commit is contained in:
Shane Bammel 2021-09-24 11:26:04 -05:00
parent fda647da9a
commit 5b21351f57

View File

@ -21,11 +21,11 @@ import (
)
const (
VersionMajor = 1 // Major version component of the current release
VersionMinor = 10 // Minor version component of the current release
VersionPatch = 8 // Patch version component of the current release
VersionMajor = 0 // Major version component of the current release
VersionMinor = 4 // Minor version component of the current release
VersionPatch = 1 // Patch version component of the current release
VersionMeta = "stable" // Version metadata to append to the version string
VariantMeta = "pulse" // Version metadata to append to the version string
VariantMeta = "pulse" // Version metadata to append to the version string
)
// Version holds the textual version string.