Skip to content

Commit

Permalink
version: Prepare v2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jrick committed May 16, 2024
1 parent 4618df8 commit ade2a17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ const Integer = 1000000*Major + 10000*Minor + 100*Patch
// so it can be modified at link time (e.g.
// `-ldflags "-X decred.org/dcrwallet/v4/version.PreRelease=rc1"`).
// It must only contain characters from the semantic version alphabet.
var PreRelease = "pre"
var PreRelease = ""

// BuildMetadata defines additional build metadata. It is modified at link time
// for official releases. It must only contain characters from the semantic
// version alphabet.
var BuildMetadata = ""
var BuildMetadata = "release.local"

func init() {
if BuildMetadata == "" {
Expand Down

0 comments on commit ade2a17

Please sign in to comment.