Skip to content

Commit 3261a1f

Browse files
committed
Version bumped to 0.2.5
1 parent 85c7d58 commit 3261a1f

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ jobs:
7171
GITHUB_TOKEN: ${{ github.token }}
7272
with:
7373
upload_url: ${{ steps.create_release.outputs.upload_url }}
74-
asset_path: Cryptor/build/libs/Cryptor-0.2.4-amd64-all.jar
75-
asset_name: Cryptor-0.2.4-amd64-all.jar
74+
asset_path: Cryptor/build/libs/Cryptor-0.2.5-amd64-all.jar
75+
asset_name: Cryptor-0.2.5-amd64-all.jar
7676
asset_content_type: application/jar
7777

7878
- name: Upload FiddPacker x64 artifact
@@ -81,8 +81,8 @@ jobs:
8181
GITHUB_TOKEN: ${{ github.token }}
8282
with:
8383
upload_url: ${{ steps.create_release.outputs.upload_url }}
84-
asset_path: FiddPacker/build/libs/FiddPacker-0.2.4-amd64-all.jar
85-
asset_name: FiddPacker-0.2.4-amd64-all.jar
84+
asset_path: FiddPacker/build/libs/FiddPacker-0.2.5-amd64-all.jar
85+
asset_name: FiddPacker-0.2.5-amd64-all.jar
8686
asset_content_type: application/jar
8787

8888
- name: Upload FiddView x64 artifact
@@ -91,6 +91,6 @@ jobs:
9191
GITHUB_TOKEN: ${{ github.token }}
9292
with:
9393
upload_url: ${{ steps.create_release.outputs.upload_url }}
94-
asset_path: FiddView/build/libs/FiddView-0.2.4-amd64-all.jar
95-
asset_name: FiddView-0.2.4-amd64-all.jar
94+
asset_path: FiddView/build/libs/FiddView-0.2.5-amd64-all.jar
95+
asset_name: FiddView-0.2.5-amd64-all.jar
9696
asset_content_type: application/jar

Cryptor/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group 'com.fidd.cryptor'
11-
version '0.2.4-amd64'
11+
version '0.2.5-amd64'
1212

1313
repositories {
1414
mavenCentral()

Cryptor/src/main/java/com/fidd/cryptor/forms/MainForm.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public MainForm() {
114114
}
115115

116116
public void showAboutDialog() {
117-
Alert alert = new Alert(Alert.AlertType.NONE, "Cryptor v 0.2.4", ButtonType.OK);
117+
Alert alert = new Alert(Alert.AlertType.NONE, "Cryptor v 0.2.5", ButtonType.OK);
118118
alert.showAndWait();
119119
}
120120

FiddPacker/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group 'com.fidd.packer'
11-
version '0.2.4-amd64'
11+
version '0.2.5-amd64'
1212

1313
repositories {
1414
mavenCentral()

FiddPacker/src/main/java/com/fidd/packer/forms/MainForm.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ public MainForm() {
257257
}
258258

259259
public void showAboutDialog() {
260-
Alert alert = new Alert(Alert.AlertType.NONE, "FiddPacker v 0.0.1", ButtonType.OK);
260+
Alert alert = new Alert(Alert.AlertType.NONE, "FiddPacker v 0.2.5", ButtonType.OK);
261261
alert.showAndWait();
262262
}
263263

FiddView/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group 'com.fidd.view'
12-
version '0.2.4-amd64'
12+
version '0.2.5-amd64'
1313

1414
repositories {
1515
mavenCentral()

FiddView/src/main/java/com/fidd/view/forms/MainForm.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public MainForm() {
132132
}
133133

134134
public void showAboutDialog() {
135-
Alert alert = new Alert(Alert.AlertType.NONE, "FiddView v 0.2.4", ButtonType.OK);
135+
Alert alert = new Alert(Alert.AlertType.NONE, "FiddView v 0.2.5", ButtonType.OK);
136136
alert.showAndWait();
137137
}
138138

0 commit comments

Comments
 (0)