Merge pull request #2580 from Roasbeef/version-bump-v0.26.2
Some checks failed
Build and Test / Build (push) Has been cancelled
Build and Test / Unit coverage (push) Has been cancelled
Build and Test / Unit race (push) Has been cancelled
Build and Test / Unit rpctest (push) Has been cancelled

build: bump version to v0.26.2-beta
This commit is contained in:
Olaoluwa Osuntokun 2026-07-24 16:46:30 -07:00 committed by GitHub
commit 05585e037b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,11 +18,11 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
const (
appMajor uint = 0
appMinor uint = 26
appPatch uint = 1
appPatch uint = 2
// appPreRelease MUST only contain characters from semanticAlphabet
// per the semantic versioning spec.
appPreRelease = "beta.rc1"
appPreRelease = "beta"
)
// appBuild is defined as a variable so it can be overridden during the build