Skip to content

Commit

Permalink
build: bump version to v0.10.0-beta.rc1
Browse files Browse the repository at this point in the history
We also add '.' to the semantic versioning alphabet to ensure it isn't
stripped out.
  • Loading branch information
Roasbeef committed Apr 15, 2020
1 parent 5955f83 commit 95e2809
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var (

// semanticAlphabet is the set of characters that are permitted for use in an
// AppPreRelease.
const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-"
const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-."

// These constants define the application version and follow the semantic
// versioning 2.0.0 spec (http://semver.org/).
Expand All @@ -41,14 +41,14 @@ const (
AppMajor uint = 0

// AppMinor defines the minor version of this binary.
AppMinor uint = 9
AppMinor uint = 10

// AppPatch defines the application patch for this binary.
AppPatch uint = 0

// AppPreRelease MUST only contain characters from semanticAlphabet
// per the semantic versioning spec.
AppPreRelease = "beta"
AppPreRelease = "beta.rc1"
)

func init() {
Expand Down

0 comments on commit 95e2809

Please sign in to comment.