Skip to content

Commit a297e51

Browse files
committed
eddsa-0.2.0
1 parent 309c816 commit a297e51

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Download the latest .jar from the releases tab and place it in your classpath.
1818
Gradle users:
1919

2020
```
21-
compile 'net.i2p.crypto:eddsa:0.1.0'
21+
compile 'net.i2p.crypto:eddsa:0.2.0'
2222
```
2323

2424
The code requires Java 6 (for e.g. the `Arrays.copyOfRange()` calls in `EdDSAEngine.engineVerify()`).

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>net.i2p.crypto</groupId>
55
<artifactId>eddsa</artifactId>
6-
<version>0.2.0-SNAPSHOT</version>
6+
<version>0.2.0</version>
77
<name>EdDSA-Java</name>
88
<packaging>bundle</packaging>
99
<description>Implementation of EdDSA in Java</description>
@@ -139,7 +139,7 @@
139139
<plugin>
140140
<groupId>org.sonatype.plugins</groupId>
141141
<artifactId>nexus-staging-maven-plugin</artifactId>
142-
<version>1.6.3</version>
142+
<version>1.6.7</version>
143143
<extensions>true</extensions>
144144
<configuration>
145145
<serverId>ossrh</serverId>

src/net/i2p/crypto/eddsa/EdDSASecurityProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class EdDSASecurityProvider extends Provider {
2626
public static final String PROVIDER_NAME = "EdDSA";
2727

2828
public EdDSASecurityProvider() {
29-
super(PROVIDER_NAME, 0.1 /* should match POM major.minor version */, "str4d " + PROVIDER_NAME + " security provider wrapper");
29+
super(PROVIDER_NAME, 0.2 /* should match POM major.minor version */, "str4d " + PROVIDER_NAME + " security provider wrapper");
3030

3131
AccessController.doPrivileged(new PrivilegedAction<Object>() {
3232
@Override

0 commit comments

Comments
 (0)