version: bump version to v0.17.0-alpha.rc1

This commit is contained in:
Viktor Torstensson 2026-06-08 13:29:55 +02:00
parent 782113f36b
commit 6f89357c35
No known key found for this signature in database
GPG key ID: 961CC8259AE675D4

View file

@ -34,12 +34,12 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmn" +
// versioning 2.0.0 spec (http://semver.org/).
const (
appMajor uint = 0
appMinor uint = 16
appPatch uint = 1
appMinor uint = 17
appPatch uint = 0
// appPreRelease MUST only contain characters from semanticAlphabet per
// the semantic versioning spec.
appPreRelease = "alpha"
appPreRelease = "alpha.rc1"
)
// Version returns the application version as a properly formed string per the