Skip to content

Commit

Permalink
v0.18.11
Browse files Browse the repository at this point in the history
  • Loading branch information
m-bo-one committed Oct 13, 2021
1 parent a20b09f commit 0400939
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions version/semantic.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 0400939

Please sign in to comment.