What changed, and why it matters
This commit is a routine version bump from 2.5.4 to 2.5.5. It only changes version strings in four files: the build script, macOS app metadata, in-app version constant, and documentation example. There are no code logic changes, no bug fixes, and no security-related content.
No security action needed. Treat as a normal release-tagging commit.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff updates version identifiers across the project: build.gradle (project version), Info.plist (macOS bundle version), SparrowWallet.java (runtime APP_VERSION constant), and docs/reproducible.md (example GIT_TAG). No functional code, dependencies, or security controls were modified.
Changed components
build.gradle version metadatasrc/main/deploy/package/macos/Info.plist version metadatasrc/main/java/com/sparrowwallet/sparrow/SparrowWallet.java APP_VERSION constantdocs/reproducible.md documentation exampleInspect captured patch +4 / −4
### build.gradle
@@ -21,7 +21,7 @@ def headless = "true".equals(System.getProperty("java.awt.headless"))
def skipInstallers = "true".equals(findProperty("skipInstallers"))
group = 'com.sparrowwallet'
-version = '2.5.4'
+version = '2.5.5'
repositories {
mavenCentral()
### docs/reproducible.md
@@ -56,7 +56,7 @@ sudo apt install -y rpm fakeroot binutils
First, assign a temporary variable in your shell for the specific release you want to build. For the current one specify:
```shell
-GIT_TAG="2.5.3"
+GIT_TAG="2.5.4"
```
The project can then be initially cloned as follows:
### src/main/deploy/package/macos/Info.plist
@@ -21,7 +21,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
- <string>2.5.4</string>
+ <string>2.5.5</string>
<key>CFBundleSignature</key>
<string>????</string>
<!-- See https://developer.apple.com/app-store/categories/ for list of AppStore categories -->
### src/main/java/com/sparrowwallet/sparrow/SparrowWallet.java
@@ -19,7 +19,7 @@
public class SparrowWallet {
public static final String APP_ID = "sparrow";
public static final String APP_NAME = "Sparrow";
- public static final String APP_VERSION = "2.5.4";
+ public static final String APP_VERSION = "2.5.5";
public static final String APP_VERSION_SUFFIX = "";
public static final String APP_HOME_PROPERTY = ApplicationDir.getHomeProperty(APP_NAME);
public static final String NETWORK_ENV_PROPERTY = "SPARROW_NETWORK";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.