version: fix typo in v1.14.13 release cycle name

This commit is contained in:
Martin Holst Swende 2024-11-19 16:58:52 +01:00
parent 66d8185aad
commit aa63692129
No known key found for this signature in database
GPG Key ID: 683B438C05A5DDF0
1 changed files with 4 additions and 4 deletions

View File

@ -17,8 +17,8 @@
package version package version
const ( const (
Major = 1 // Major version component of the current release Major = 1 // Major version component of the current release
Minor = 14 // Minor version component of the current release Minor = 14 // Minor version component of the current release
Patch = 13 // Patch version component of the current release Patch = 13 // Patch version component of the current release
Meta = "ustable" // Version metadata to append to the version string Meta = "unstable" // Version metadata to append to the version string
) )