diff --git a/version/semantic.go b/version/semantic.go index 3b1513754..a233c3118 100644 --- a/version/semantic.go +++ b/version/semantic.go @@ -22,13 +22,13 @@ var Client *Version // Version of the client // This should be the only copy of the version numbers, anywhere in the code. func init() { // The protocol - Protocol = NewVersion(0, 18, 10, "frankenstein", "Protocol") + Protocol = NewVersion(0, 18, 11, "frankenstein", "Protocol") // The backend server (node) code - Fullnode = NewVersion(0, 18, 10, "frankenstein", "Fullnode") + Fullnode = NewVersion(0, 18, 11, "frankenstein", "Fullnode") // Any of the clients used to connect - Client = NewVersion(0, 18, 10, "frankenstein", "Client") + Client = NewVersion(0, 18, 11, "frankenstein", "Client") } func NewVersion(major, minor, patch int, release, meta string) *Version {