Skip to content

Commit

Permalink
Create version 1.0.1 to use secure version of log4j
Browse files Browse the repository at this point in the history
  • Loading branch information
fnwirth committed Dec 13, 2021
1 parent 2b237b8 commit 44416e3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions installer/linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
#Usually only the version variable and the type (RPM or DEB) needs to be adapted
#==================================
VERSION="1.0"
MINOR_VERSION="0" # if left out for deb packages a "1" is added
MINOR_VERSION="1" # if left out for deb packages a "1" is added
TYPE="deb"
BUILD_PATH="../target"
MAIN_JAR="easysmpc.jar"
MAIN_JAR="easy-smpc-1.0.1.jar"
MAIN_CLASS="org.bihealth.mi.easysmpc.App"
APPLICATION_NAME="EasySMPC"
DESCRIPTION_TEXT="No-Code Approach to Secure Multi-Party Computation"
Expand Down
4 changes: 2 additions & 2 deletions installer/macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
#Create an EasySMPC installer for MacOS
#Usually only the version variable and the type (RPM or DEB) needs to be adapted
#==================================
VERSION="1.0.0"
VERSION="1.0.1"
TYPE="dmg"
BUILD_PATH="../target"
MAIN_JAR="easy-smpc-1.0.0.jar"
MAIN_JAR="easy-smpc-1.0.1.jar"
MAIN_CLASS="org.bihealth.mi.easysmpc.App"
APPLICATION_NAME="EasySMPC"
DESCRIPTION_TEXT="No-Code Approach to Secure Multi-Party Computation"
Expand Down
4 changes: 2 additions & 2 deletions installer/windows.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ REM Create an installer for Windows
REM Usually only the version variable needs to be adapted
REM Before executing the batch file the WIX toolset needs to be obtained and installed from https://wixtoolset.org/
REM ==================================
@SET version="1.0.0"
@SET version="1.0.1"
@SET buildPath="..\target"
@SET mainJar="easy-smpc-1.0.0.jar"
@SET mainJar="easy-smpc-1.0.1.jar"
@SET mainClass=org.bihealth.mi.easysmpc.App
@SET applicationName=EasySMPC
@SET descriptionText="No-Code Approach to Secure Multi-Party Computation"
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.bihealth.mi</groupId>
<artifactId>easy-smpc</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<packaging>jar</packaging>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/bihealth/mi/easysmpc/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
*/
public class App extends JFrame {

public static final String VERSION = "1.0.0";
public static final String VERSION = "1.0.1";

/** SVUID */
private static final long serialVersionUID = 8047583915796168387L;
Expand Down

0 comments on commit 44416e3

Please sign in to comment.