From 67a6bb5ecf68e9df69d08640c10284705f29560a Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Thu, 11 Aug 2022 17:35:10 -0700 Subject: [PATCH] build: bump version to v0.15.99 We forgot to do this after 0.15 was tagged, but usually we use a x.99 version to indicate that the commits in master are between releases. This might also make it easier to help identify exactly which version a user is running in issue reports. [skip-ci] --- build/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/version.go b/build/version.go index 57db4e8ec..d7187b8f6 100644 --- a/build/version.go +++ b/build/version.go @@ -44,7 +44,7 @@ const ( AppMinor uint = 15 // AppPatch defines the application patch for this binary. - AppPatch uint = 0 + AppPatch uint = 99 // AppPreRelease MUST only contain characters from semanticAlphabet // per the semantic versioning spec.