Skip to content

Commit

Permalink
moved to 1.78.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dghgit committed Apr 18, 2024
1 parent c5d4c83 commit ada71e4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions bc-build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
# intended to hold user-specific settings that are *not* committed to
# the repository.

release.suffix: 178
release.name: 1.78
release.version: 1.78
release.suffix: 17801
release.name: 1.78.1
release.version: 1.78.1
release.debug: true

mail.jar.home: ./libs/javax.mail-1.4.7.jar
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ subprojects {
}

tasks.withType(JavaCompile).configureEach {
options.debug = true;
options.debug = false;
}

tasks.withType(Test).configureEach {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class BouncyCastlePQCProvider
extends Provider
implements ConfigurableProvider
{
private static String info = "BouncyCastle Post-Quantum Security Provider v1.78";
private static String info = "BouncyCastle Post-Quantum Security Provider v1.78.1";

public static String PROVIDER_NAME = "BCPQC";

Expand Down Expand Up @@ -50,7 +50,7 @@ public class BouncyCastlePQCProvider
*/
public BouncyCastlePQCProvider()
{
super(PROVIDER_NAME, 1.78, info);
super(PROVIDER_NAME, 1.7801, info);

AccessController.doPrivileged(new PrivilegedAction()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
public final class BouncyCastleProvider extends Provider
implements ConfigurableProvider
{
private static String info = "BouncyCastle Security Provider v1.78";
private static String info = "BouncyCastle Security Provider v1.78.1";

public static final String PROVIDER_NAME = "BC";

Expand Down Expand Up @@ -118,7 +118,7 @@ public final class BouncyCastleProvider extends Provider
*/
public BouncyCastleProvider()
{
super(PROVIDER_NAME, 1.78, info);
super(PROVIDER_NAME, 1.7801, info);

setup();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
public final class BouncyCastleProvider extends Provider
implements ConfigurableProvider
{
private static String info = "BouncyCastle Security Provider v1.78";
private static String info = "BouncyCastle Security Provider v1.78.1";

public static final String PROVIDER_NAME = "BC";

Expand Down Expand Up @@ -135,7 +135,7 @@ public final class BouncyCastleProvider extends Provider
*/
public BouncyCastleProvider()
{
super(PROVIDER_NAME, 1.78, info);
super(PROVIDER_NAME, 1.7801, info);

AccessController.doPrivileged(new PrivilegedAction()
{
Expand Down

0 comments on commit ada71e4

Please sign in to comment.