Skip to content

Commit

Permalink
app/version: bump version to v0.20-dev (ObolNetwork#2774)
Browse files Browse the repository at this point in the history
Only support v0.19 and 0.20 series versions.

category: misc
ticket: none
  • Loading branch information
gsora authored Jan 11, 2024
1 parent 586168f commit e37816a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
)

// version a string since it is overwritten at build-time with the git tag for official releases.
var version = "v0.19-dev"
var version = "v0.20-dev"

// Version is the branch version of the codebase.
// - Main branch: v0.X-dev
Expand All @@ -26,9 +26,8 @@ var Version, _ = Parse(version) // Error is caught in tests.
func Supported() []SemVer {
return []SemVer{
// Current minor version always goes first.
{major: 0, minor: 20},
{major: 0, minor: 19},
{major: 0, minor: 18},
{major: 0, minor: 17},
}
}

Expand Down

0 comments on commit e37816a

Please sign in to comment.