What changed, and why it matters
This commit is a routine version bump from 2.4.3 to 2.5.0. It only changes three version number strings in build files and application metadata. There are no code logic changes, no bug fixes, and no security-related modifications visible in the diff.
No security action required. Treat as a normal release version bump. Review the full v2.5.0 release notes or changelog separately if assessing the security of the release as a whole, since this single commit does not contain substantive changes.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit updates the declared application version in three locations: build.gradle (project version), macOS Info.plist (CFBundleShortVersionString), and SparrowWallet.java (APP_VERSION constant). The diff contains only string replacements of ‘2.4.3’ with ‘2.5.0’. No functional code, dependencies, or security controls were modified.
Changed components
build.gradle version metadatamacOS Info.plist version metadataSparrowWallet.java APP_VERSION constantInspect captured patch +3 / −3
diff --git a/build.gradle b/build.gradle
index 8668b36..744a4b7 100644
--- a/build.gradle
+++ b/build.gradle
@@ -20,7 +20,7 @@ if(System.getProperty("os.arch") == "aarch64") {
def headless = "true".equals(System.getProperty("java.awt.headless"))
group = 'com.sparrowwallet'
-version = '2.4.3'
+version = '2.5.0'
repositories {
mavenCentral()
diff --git a/src/main/deploy/package/macos/Info.plist b/src/main/deploy/package/macos/Info.plist
index 98e1d72..f9a6181 100644
--- a/src/main/deploy/package/macos/Info.plist
+++ b/src/main/deploy/package/macos/Info.plist
@@ -21,7 +21,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
- <string>2.4.3</string>
+ <string>2.5.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<!-- See https://developer.apple.com/app-store/categories/ for list of AppStore categories -->
diff --git a/src/main/java/com/sparrowwallet/sparrow/SparrowWallet.java b/src/main/java/com/sparrowwallet/sparrow/SparrowWallet.java
index 94bebaa..8310a03 100644
--- a/src/main/java/com/sparrowwallet/sparrow/SparrowWallet.java
+++ b/src/main/java/com/sparrowwallet/sparrow/SparrowWallet.java
@@ -18,7 +18,7 @@ import java.util.*;
public class SparrowWallet {
public static final String APP_ID = "sparrow";
public static final String APP_NAME = "Sparrow";
- public static final String APP_VERSION = "2.4.3";
+ public static final String APP_VERSION = "2.5.0";
public static final String APP_VERSION_SUFFIX = "";
public static final String APP_HOME_PROPERTY = "sparrow.home";
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.