Skip to content

Commit 81eaeb6

Browse files
committed
bump version to v1.1.1
1 parent ae5ee15 commit 81eaeb6

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ configure(project(':desktop')) {
610610
apply plugin: 'com.github.johnrengelman.shadow'
611611
apply from: 'package/package.gradle'
612612

613-
version = '1.1.0-SNAPSHOT'
613+
version = '1.1.1-SNAPSHOT'
614614

615615
jar.manifest.attributes(
616616
"Implementation-Title": project.name,

common/src/main/java/haveno/common/app/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
public class Version {
2929
// The application versions
3030
// We use semantic versioning with major, minor and patch
31-
public static final String VERSION = "1.1.0";
31+
public static final String VERSION = "1.1.1";
3232

3333
/**
3434
* Holds a list of the tagged resource files for optimizing the getData requests.

desktop/package/linux/exchange.haveno.Haveno.metainfo.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@
6060
</content_rating>
6161

6262
<releases>
63-
<release version="1.1.0" date="2025-04-17"/>
63+
<release version="1.1.1" date="2025-04-27"/>
6464
</releases>
6565
</component>

desktop/package/macosx/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
<!-- See: https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -->
66

77
<key>CFBundleVersion</key>
8-
<string>1.1.0</string>
8+
<string>1.1.1</string>
99

1010
<key>CFBundleShortVersionString</key>
11-
<string>1.1.0</string>
11+
<string>1.1.1</string>
1212

1313
<key>CFBundleExecutable</key>
1414
<string>Haveno</string>

seednode/src/main/java/haveno/seednode/SeedNodeMain.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
@Slf4j
4242
public class SeedNodeMain extends ExecutableForAppWithP2p {
4343
private static final long CHECK_CONNECTION_LOSS_SEC = 30;
44-
private static final String VERSION = "1.1.0";
44+
private static final String VERSION = "1.1.1";
4545
private SeedNode seedNode;
4646
private Timer checkConnectionLossTime;
4747

0 commit comments

Comments
 (0)