build: bump CLIENT_VERSION_MAJOR to 30
What changed, and why it matters
This commit simply changes the displayed major version number of Bitcoin Core from 29 to 30 in the build configuration. It is a routine development bookkeeping change with no security relevance.
No action required; this is a benign version-bump commit.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit modifies a single CMake variable, CLIENT_VERSION_MAJOR, from 29 to 30 in CMakeLists.txt. This is a standard version-bump commit used to mark the start of a new development cycle. There are no code logic, protocol, or cryptographic changes.
Changed components
CMakeLists.txt version metadataInspect captured patch +1 / −1
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5c972d87..4c10fb73 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -27,7 +27,7 @@ get_directory_property(precious_variables CACHE_VARIABLES)
# Project / Package metadata
#=============================
set(CLIENT_NAME "Bitcoin Core")
-set(CLIENT_VERSION_MAJOR 29)
+set(CLIENT_VERSION_MAJOR 30)
set(CLIENT_VERSION_MINOR 99)
set(CLIENT_VERSION_BUILD 0)
set(CLIENT_VERSION_RC 0)
Why 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.