Skip to content

Commit

Permalink
Lift to version 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
wirthfn authored and wirthfn committed Jun 16, 2022
1 parent fb0e6c1 commit 848d5dc
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 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="6" # if left out for deb packages a "1" is added
MINOR_VERSION="7" # if left out for deb packages a "1" is added
TYPE="deb"
BUILD_PATH="../target"
MAIN_JAR="easy-smpc-1.0.6-gui-generic.jar"
MAIN_JAR="easy-smpc-1.0.7-gui-generic.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.6"
VERSION="1.0.7"
TYPE="dmg"
BUILD_PATH="../target"
MAIN_JAR="easy-smpc-1.0.6-gui-generic.jar"
MAIN_JAR="easy-smpc-1.0.7-gui-generic.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.6"
@SET version="1.0.7"
@SET buildPath="..\target"
@SET mainJar="easy-smpc-1.0.6-gui-generic.jar"
@SET mainJar="easy-smpc-1.0.7-gui-generic.jar"
@SET mainClass=org.bihealth.mi.easysmpc.App
@SET applicationName=EasySMPC
@SET descriptionText="No-Code Approach to Secure Multi-Party Computation"
Expand Down
5 changes: 3 additions & 2 deletions 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.6</version>
<version>1.0.7</version>
<packaging>jar</packaging>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
Expand All @@ -30,6 +30,7 @@
<goal>shade</goal>
</goals>
<configuration>
<outputFile>target/${project.artifactId}-${project.version}-gui-generic.jar</outputFile>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
Expand Down Expand Up @@ -91,7 +92,7 @@
<goal>shade</goal>
</goals>
<configuration>
<outputFile>target/${project.artifactId}-cli-${project.version}.jar</outputFile>
<outputFile>target/${project.artifactId}-${project.version}-cli.jar</outputFile>
<createDependencyReducedPom>false</createDependencyReducedPom>
<transformers>
<transformer
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.6";
public static final String VERSION = "1.0.7";

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

0 comments on commit 848d5dc

Please sign in to comment.