1
0
Fork 0
forked from forks/go-ethereum

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

View file

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