What changed, and why it matters
This commit is a routine version bump from 2.3.0 to 2.3.1. It only changes version strings in build files, documentation, and a macOS package file. There are no code changes that affect security or functionality.
No security action required. Treat as a normal release version bump. If reviewing the release, inspect the separate changes included in the v2.3.1 tag or the updated drongo submodule for any security-relevant fixes.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit updates the declared application version from 2.3.0 to 2.3.1 in build.gradle, docs/reproducible.md, src/main/deploy/package/osx/Info.plist, and src/main/java/com/sparrowwallet/sparrow/SparrowWallet.java. The drongo submodule reference is also updated, but no diff content is shown for it. No executable logic, dependency versions, cryptographic operations, network handling, or input validation were modified in the visible diff.
Changed components
Inspect captured patch +5 / −5
diff --git a/build.gradle b/build.gradle
index e08b77c..32fd39b 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.3.0'
+version = '2.3.1'
repositories {
mavenCentral()
diff --git a/docs/reproducible.md b/docs/reproducible.md
index e6e97ea..38eea18 100644
--- a/docs/reproducible.md
+++ b/docs/reproducible.md
@@ -83,7 +83,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.2.3"
+GIT_TAG="2.3.0"
```
The project can then be initially cloned as follows:
diff --git a/src/main/deploy/package/osx/Info.plist b/src/main/deploy/package/osx/Info.plist
index 96bf98d..d953b51 100644
--- a/src/main/deploy/package/osx/Info.plist
+++ b/src/main/deploy/package/osx/Info.plist
@@ -21,7 +21,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
- <string>2.3.0</string>
+ <string>2.3.1</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 55cb978..360312d 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.3.0";
+ public static final String APP_VERSION = "2.3.1";
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.