build: bump dso version for 1.5.4
What changed, and why it matters
This commit is a routine build-system version bump. It changes one number in a Makefile from 0 to 1 so the shared library reports version 1.5.4 instead of 1.5.3. There is no code change, no bug fix, and no security relevance visible in the diff.
No action required; this is a benign release bookkeeping change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit increments LT_VER_REVISION in src/Makefile.am from 0 to 1. This is a standard libtool shared-library revision bump for the 1.5.4 release. No source code, ABI, or API changes are present.
Changed components
src/Makefile.amInspect captured patch +1 / −1
diff --git a/src/Makefile.am b/src/Makefile.am
index 82674db..977593a 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -202,7 +202,7 @@ if SHARED_BUILD_ENABLED
# Increment at every ABI change (whether breaking or non-breaking)
LT_VER_CURRENT = 9
# Increment at every release, but reset to 0 at every ABI change
-LT_VER_REVISION = 0
+LT_VER_REVISION = 1
# Increment at every ABI change, but reset to 0 if breaking
LT_VER_AGE = 3
# The library filename will be "libwallycore.so.$((current-age)).$((age)).$((revision))",
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.