Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
J08nY committed Nov 28, 2018
1 parent ebe40e2 commit 687a09b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/cz/crcs/ectester/applet/AppletBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public abstract class AppletBase extends Applet {
public static final short BASE_222 = (short) 0x0222;

//
public static final byte[] VERSION = {'v', '0', '.', '3', '.', '0'};
public static final byte[] VERSION = {'v', '0', '.', '3', '.', '1'};

public static final short ARRAY_LENGTH = 0x100;
public static final short APDU_MAX_LENGTH = 1024;
Expand Down
4 changes: 2 additions & 2 deletions src/cz/crcs/ectester/reader/ECTesterReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
*
* @author Petr Svenda [email protected]
* @author Jan Jancar [email protected]
* @version v0.3.0
* @version v0.3.1
*/
public class ECTesterReader {
private CardMngr cardManager;
Expand All @@ -73,7 +73,7 @@ public class ECTesterReader {
private Config cfg;

private Options opts = new Options();
public static final String VERSION = "v0.3.0";
public static final String VERSION = "v0.3.1";
public static String GIT_COMMIT = "";
private static String DESCRIPTION;
private static String LICENSE = "MIT Licensed\nCopyright (c) 2016-2018 Petr Svenda <[email protected]>";
Expand Down
4 changes: 2 additions & 2 deletions src/cz/crcs/ectester/standalone/ECTesterStandalone.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
* Standalone part of ECTester, a tool for testing Elliptic curve implementations in software libraries.
*
* @author Jan Jancar [email protected]
* @version v0.3.0
* @version v0.3.1
*/
public class ECTesterStandalone {
private ProviderECLibrary[] libs = new ProviderECLibrary[]{
Expand All @@ -84,7 +84,7 @@ public class ECTesterStandalone {
private Options opts = new Options();
private TreeParser optParser;
private TreeCommandLine cli;
public static final String VERSION = "v0.3.0";
public static final String VERSION = "v0.3.1";
private static final String DESCRIPTION = "ECTesterStandalone " + VERSION + ", an Elliptic Curve Cryptography support tester/utility.";
private static final String LICENSE = "MIT Licensed\nCopyright (c) 2016-2018 Petr Svenda <[email protected]>";
private static final String CLI_HEADER = "\n" + DESCRIPTION + "\n\n";
Expand Down

0 comments on commit 687a09b

Please sign in to comment.