Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
m-bo-one committed Mar 25, 2022
1 parent e470d88 commit 5f80a91
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, 13, "frankenstein", "Protocol")
Protocol = NewVersion(0, 18, 14, "frankenstein", "Protocol")

// The backend server (node) code
Fullnode = NewVersion(0, 18, 13, "frankenstein", "Fullnode")
Fullnode = NewVersion(0, 18, 14, "frankenstein", "Fullnode")

// Any of the clients used to connect
Client = NewVersion(0, 18, 13, "frankenstein", "Client")
Client = NewVersion(0, 18, 14, "frankenstein", "Client")
}

func NewVersion(major, minor, patch int, release, meta string) *Version {
Expand Down

0 comments on commit 5f80a91

Please sign in to comment.