From 563ba97f58dbc04d07323b3c0a139c45621bd019 Mon Sep 17 00:00:00 2001 From: Idris Bowman <34751375+V00D00-child@users.noreply.github.com> Date: Sat, 13 Jul 2024 13:04:11 -0400 Subject: [PATCH] release --- version/version.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/version/version.go b/version/version.go index 9eb3505..4a453e3 100644 --- a/version/version.go +++ b/version/version.go @@ -7,10 +7,10 @@ import ( ) const ( - VersionMajor = 0 // Major version for stable releases - VersionMinor = 1 // Minor version for stable releases - VersionPatch = 0 // Patch version for stable releases - VersionMeta = "unstable" // Version metadata to append to the version string (e.g. "unstable" or "stable" or "beta") + VersionMajor = 0 // Major version for stable releases + VersionMinor = 1 // Minor version for stable releases + VersionPatch = 0 // Patch version for stable releases + VersionMeta = "stable" // Version metadata to append to the version string (e.g. "unstable" or "stable" or "beta") ) // VersionInfo holds the commit hash and commit hash date.