Skip to content

Commit ada71e4

Browse files
committed
moved to 1.78.1
1 parent c5d4c83 commit ada71e4

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

bc-build.properties

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
# intended to hold user-specific settings that are *not* committed to
44
# the repository.
55

6-
release.suffix: 178
7-
release.name: 1.78
8-
release.version: 1.78
6+
release.suffix: 17801
7+
release.name: 1.78.1
8+
release.version: 1.78.1
99
release.debug: true
1010

1111
mail.jar.home: ./libs/javax.mail-1.4.7.jar

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ subprojects {
246246
}
247247

248248
tasks.withType(JavaCompile).configureEach {
249-
options.debug = true;
249+
options.debug = false;
250250
}
251251

252252
tasks.withType(Test).configureEach {

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

+2-2
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.78";
25+
private static String info = "BouncyCastle Post-Quantum Security Provider v1.78.1";
2626

2727
public static String PROVIDER_NAME = "BCPQC";
2828

@@ -50,7 +50,7 @@ public class BouncyCastlePQCProvider
5050
*/
5151
public BouncyCastlePQCProvider()
5252
{
53-
super(PROVIDER_NAME, 1.78, info);
53+
super(PROVIDER_NAME, 1.7801, info);
5454

5555
AccessController.doPrivileged(new PrivilegedAction()
5656
{

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
public final class BouncyCastleProvider extends Provider
4444
implements ConfigurableProvider
4545
{
46-
private static String info = "BouncyCastle Security Provider v1.78";
46+
private static String info = "BouncyCastle Security Provider v1.78.1";
4747

4848
public static final String PROVIDER_NAME = "BC";
4949

@@ -118,7 +118,7 @@ public final class BouncyCastleProvider extends Provider
118118
*/
119119
public BouncyCastleProvider()
120120
{
121-
super(PROVIDER_NAME, 1.78, info);
121+
super(PROVIDER_NAME, 1.7801, info);
122122

123123
setup();
124124
}

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
public final class BouncyCastleProvider extends Provider
5252
implements ConfigurableProvider
5353
{
54-
private static String info = "BouncyCastle Security Provider v1.78";
54+
private static String info = "BouncyCastle Security Provider v1.78.1";
5555

5656
public static final String PROVIDER_NAME = "BC";
5757

@@ -135,7 +135,7 @@ public final class BouncyCastleProvider extends Provider
135135
*/
136136
public BouncyCastleProvider()
137137
{
138-
super(PROVIDER_NAME, 1.78, info);
138+
super(PROVIDER_NAME, 1.7801, info);
139139

140140
AccessController.doPrivileged(new PrivilegedAction()
141141
{

0 commit comments

Comments
 (0)