From f6f87ce80b5d72df3998f253cd532369c3ab0d4b Mon Sep 17 00:00:00 2001 From: Cassandra Heart Date: Mon, 2 Dec 2024 16:27:59 -0600 Subject: [PATCH] bump version --- node/config/version.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/node/config/version.go b/node/config/version.go index 618338a..5519f44 100644 --- a/node/config/version.go +++ b/node/config/version.go @@ -13,15 +13,15 @@ func GetMinimumVersionCutoff() time.Time { // if there is something in the patch update that is needed to cut off unupgraded // peers. Be sure to update this to 0x00 for any new minor release func GetMinimumPatchVersion() byte { - return 0x02 + return 0x00 } func GetMinimumVersion() []byte { - return []byte{0x02, 0x00, 0x04} + return []byte{0x02, 0x00, 0x05} } func GetVersion() []byte { - return []byte{0x02, 0x00, 0x04} + return []byte{0x02, 0x00, 0x05} } func GetVersionString() string { @@ -43,9 +43,9 @@ func FormatVersion(version []byte) string { } func GetPatchNumber() byte { - return 0x02 + return 0x00 } func GetRCNumber() byte { - return 0x02 + return 0x00 }