Skip to content

Commit

Permalink
feat(coordinator): bump hardcoded tag check (#869)
Browse files Browse the repository at this point in the history
Co-authored-by: HAOYUatHZ <HAOYUatHZ@users.noreply.github.com>
  • Loading branch information
0xmountaintop and HAOYUatHZ authored Aug 24, 2023
1 parent ae2f62d commit a8c71b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
)

var tag = "v4.1.101"
var tag = "v4.1.102"

var commit = func() string {
if info, ok := debug.ReadBuildInfo(); ok {
Expand Down Expand Up @@ -78,7 +78,7 @@ func CheckScrollProverVersionTag(proverVersion string) bool {
if remoteTagMinor != 1 {
return false
}
if remoteTagPatch < 96 {
if remoteTagPatch < 98 {
return false
}
return true
Expand Down

0 comments on commit a8c71b5

Please sign in to comment.