Skip to content

Commit d82149c

Browse files
committed
moved to beta
1 parent aab0448 commit d82149c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
org.gradle.jvmargs=-Xmx2g
2-
version=1.82
3-
maxVersion=1.83
2+
version=1.83-SNAPSHOT
3+
maxVersion=1.84
44
org.gradle.java.installations.auto-detect=false
55
org.gradle.java.installations.auto-download=false
66
org.gradle.java.installations.fromEnv=BC_JDK8,BC_JDK11,BC_JDK17

prov/src/main/java/org/bouncycastle/jce/provider/BouncyCastleProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public final class BouncyCastleProvider extends Provider
7878
{
7979
private static final Logger LOG = Logger.getLogger(BouncyCastleProvider.class.getName());
8080

81-
private static String info = "BouncyCastle Security Provider v1.82";
81+
private static String info = "BouncyCastle Security Provider v1.83b";
8282

8383
public static final String PROVIDER_NAME = "BC";
8484

@@ -172,7 +172,7 @@ public final class BouncyCastleProvider extends Provider
172172
*/
173173
public BouncyCastleProvider()
174174
{
175-
super(PROVIDER_NAME, 1.82, info);
175+
super(PROVIDER_NAME, 1.8299, info);
176176

177177
AccessController.doPrivileged(new PrivilegedAction()
178178
{

prov/src/main/java/org/bouncycastle/pqc/jcajce/provider/BouncyCastlePQCProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class BouncyCastlePQCProvider
2222
extends Provider
2323
implements ConfigurableProvider
2424
{
25-
private static String info = "BouncyCastle Post-Quantum Security Provider v1.82";
25+
private static String info = "BouncyCastle Post-Quantum Security Provider v1.83b";
2626

2727
public static String PROVIDER_NAME = "BCPQC";
2828

@@ -51,7 +51,7 @@ public class BouncyCastlePQCProvider
5151
*/
5252
public BouncyCastlePQCProvider()
5353
{
54-
super(PROVIDER_NAME, 1.82, info);
54+
super(PROVIDER_NAME, 1.8299, info);
5555

5656
AccessController.doPrivileged(new PrivilegedAction()
5757
{

0 commit comments

Comments
 (0)