From dc32a48246a3a67aa91c5995f96a91a9bbbf9d31 Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Thu, 19 Sep 2024 09:33:54 +0200 Subject: [PATCH] build: bump master to version v0.18.99-beta As is customary when preparing for the next major (or minor) release, we bump the version to .99 to allow us to set the minimum required version to something like v0.18.4-beta in lndclient and it would still accept the master branch (even if that target version hasn't been released/tagged yet). --- build/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/version.go b/build/version.go index 46c0a4c15b..1238d35a2b 100644 --- a/build/version.go +++ b/build/version.go @@ -43,7 +43,7 @@ const ( AppMinor uint = 18 // AppPatch defines the application patch for this binary. - AppPatch uint = 00 + AppPatch uint = 99 // AppPreRelease MUST only contain characters from semanticAlphabet per // the semantic versioning spec.