Skip to content

Commit

Permalink
Enabled signing of commits and version releases with GPG
Browse files Browse the repository at this point in the history
  • Loading branch information
Remzi1993 committed Sep 23, 2024
1 parent 218b2d1 commit d11f11e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 3 additions & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,6 @@
## 2.0.1
- Improved docs and automated the release process
## 2.0.2
- Upgraded to Java and JavaFX 23. Improved instance locking.
- Upgraded to Java and JavaFX 23. Improved instance locking.
## 2.0.3
- Enabled signing of commits and version releases with GPG
2 changes: 1 addition & 1 deletion package.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# PowerShell script for automating the HvA JavaFX project packaging process.

# Define the app version as a variable
$appVersion = "2.0.2"
$appVersion = "2.0.3"
$appWebsite = "https://github.com/Remzi1993/HvA-OOP2-practicumopdracht"
$appReleases = "https://github.com/Remzi1993/HvA-OOP2-practicumopdracht/releases"

Expand Down
14 changes: 8 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,17 @@

<groupId>nl.hva.oop</groupId>
<artifactId>practicumopdracht</artifactId>
<version>2.0.2</version>
<version>2.0.3</version>
<name>practicumopdracht</name>

<properties>
<app.version>2.0.2</app.version>
<app.version>2.0.3</app.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>5.11.0</junit.version>
<java.version>23</java.version>
<javafx.version>23</javafx.version>
<maven-clean-plugin.version>3.4.0</maven-clean-plugin.version>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
</properties>

<organization>
Expand Down Expand Up @@ -64,7 +66,7 @@
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.4.0</version>
<version>${maven-clean-plugin.version}</version>
</dependency>
</dependencies>

Expand All @@ -73,7 +75,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
Expand Down Expand Up @@ -125,7 +127,7 @@
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.4.0</version>
<version>${maven-clean-plugin.version}</version>
<configuration>
<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
Expand Down Expand Up @@ -157,7 +159,7 @@
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.4.0</version>
<version>${maven-clean-plugin.version}</version>
<configuration>
<excludeDefaultDirectories>false</excludeDefaultDirectories>
<filesets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class MainApplication extends Application {
private static TicketDAO ticketDAO;
// For DAOs - the directory the application data is stored in
private static String APP_DATA_DIRECTORY;
public static final String APP_VERSION = "2.0.2";
public static final String APP_VERSION = "2.0.3";
private final Image APP_ICON;
private static final String APP_CSS = Objects.requireNonNull(
MainApplication.class.getResource("style.css")).toExternalForm();
Expand Down

0 comments on commit d11f11e

Please sign in to comment.