Skip to content

Commit 7961514

Browse files
committed
moved provider to 1.79
1 parent 0559f25 commit 7961514

File tree

8 files changed

+15
-14
lines changed

8 files changed

+15
-14
lines changed

bc-build.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
# intended to hold user-specific settings that are *not* committed to
44
# the repository.
55

6-
release.suffix: 1.79b01
7-
release.name: 1.78.99
8-
release.version: 1.78.99
9-
release.debug: true
6+
release.suffix: 1.79
7+
release.name: 1.79
8+
release.version: 1.79
9+
release.debug: false
1010

1111
mail.jar.home: ./libs/javax.mail-1.4.7.jar
1212
activation.jar.home: ./libs/activation-1.1.1.jar

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ subprojects {
262262
}
263263

264264
tasks.withType(JavaCompile).configureEach {
265-
options.debug = true;
265+
options.debug = false;
266266
}
267267

268268
tasks.withType(Test).configureEach {

docs/releasenotes.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ <h2>2.0 Release History</h2>
2424
<h3>2.1.2 Defects Fixed</h3>
2525
<ul>
2626
<li>Leading zeroes were sometimes dropped from Ed25519 signatures leading to verification errors in the PGP API. This has been fixed.</li>
27+
<li>Default version string for Armored Output is now set correctly in 18on build.</li>
2728
</ul>
2829
<h3>2.1.3 Additional Features and Functionality</h3>
2930
<ul>

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
org.gradle.jvmargs=-Xmx2g
2-
version=1.79-SNAPSHOT
2+
version=1.79
33
maxVersion=1.80
44
org.gradle.java.installations.auto-detect=false
55
org.gradle.java.installations.auto-download=false

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

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

79-
private static String info = "BouncyCastle Security Provider v1.79b";
79+
private static String info = "BouncyCastle Security Provider v1.79";
8080

8181
public static final String PROVIDER_NAME = "BC";
8282

@@ -169,7 +169,7 @@ public final class BouncyCastleProvider extends Provider
169169
*/
170170
public BouncyCastleProvider()
171171
{
172-
super(PROVIDER_NAME, 1.7899, info);
172+
super(PROVIDER_NAME, 1.7900, info);
173173

174174
AccessController.doPrivileged(new PrivilegedAction()
175175
{

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.78.1";
25+
private static String info = "BouncyCastle Post-Quantum Security Provider v1.79";
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.7801, info);
53+
super(PROVIDER_NAME, 1.7900, info);
5454

5555
AccessController.doPrivileged(new PrivilegedAction()
5656
{

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

Lines changed: 2 additions & 2 deletions
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.1";
46+
private static String info = "BouncyCastle Security Provider v1.79";
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.7801, info);
121+
super(PROVIDER_NAME, 1.7900, info);
122122

123123
setup();
124124
}

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

Lines changed: 2 additions & 2 deletions
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.1";
54+
private static String info = "BouncyCastle Security Provider v1.79";
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.7801, info);
138+
super(PROVIDER_NAME, 1.7900, info);
139139

140140
AccessController.doPrivileged(new PrivilegedAction()
141141
{

0 commit comments

Comments
 (0)