Skip to content

Commit 75c8668

Browse files
committed
version bumped to 0.2.4
1 parent 92adcc2 commit 75c8668

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
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.3-amd64-all.jar
75-
asset_name: Cryptor-0.2.3-amd64-all.jar
74+
asset_path: Cryptor/build/libs/Cryptor-0.2.4-amd64-all.jar
75+
asset_name: Cryptor-0.2.4-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.3-amd64-all.jar
85-
asset_name: FiddPacker-0.2.3-amd64-all.jar
84+
asset_path: FiddPacker/build/libs/FiddPacker-0.2.4-amd64-all.jar
85+
asset_name: FiddPacker-0.2.4-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.3-amd64-all.jar
95-
asset_name: FiddView-0.2.3-amd64-all.jar
94+
asset_path: FiddView/build/libs/FiddView-0.2.4-amd64-all.jar
95+
asset_name: FiddView-0.2.4-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.3-amd64'
11+
version '0.2.4-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.3", ButtonType.OK);
117+
Alert alert = new Alert(Alert.AlertType.NONE, "Cryptor v 0.2.4", 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.3-amd64'
11+
version '0.2.4-amd64'
1212

1313
repositories {
1414
mavenCentral()

FiddView/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.view'
11-
version '0.2.3-amd64'
11+
version '0.2.4-amd64'
1212

1313
repositories {
1414
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
@@ -101,7 +101,7 @@ public MainForm() {
101101
}
102102

103103
public void showAboutDialog() {
104-
Alert alert = new Alert(Alert.AlertType.NONE, "FiddView v 0.2.3", ButtonType.OK);
104+
Alert alert = new Alert(Alert.AlertType.NONE, "FiddView v 0.2.4", ButtonType.OK);
105105
alert.showAndWait();
106106
}
107107

0 commit comments

Comments
 (0)