Merge pull request #2580 from Roasbeef/version-bump-v0.26.2
What changed, and why it matters
This commit only changes the software version number from v0.26.1-beta.rc1 to v0.26.2-beta. It does not modify any security-related code, network behavior, or user-facing functionality. There is no security issue here.
No action required. Treat as a normal release-tagging commit.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff updates two constants in version.go: appPatch is incremented from 1 to 2, and appPreRelease is changed from ‘beta.rc1’ to ‘beta’. No logic, cryptography, networking, parsing, or consensus code is touched. This is a routine release version bump.
Changed components
version.goInspect captured patch +2 / −2
### version.go
@@ -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 buildWhy this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.