Skip to content

Commit

Permalink
moved to 1.80
Browse files Browse the repository at this point in the history
  • Loading branch information
dghgit committed Dec 29, 2024
1 parent f79f1ab commit 79a81e2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions bc-build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
# intended to hold user-specific settings that are *not* committed to
# the repository.

release.suffix: 1.79
release.name: 1.79
release.version: 1.79
release.debug: true
release.suffix: 1.80
release.name: 1.80
release.version: 1.80
release.debug: false

mail.jar.home: ./libs/javax.mail-1.4.7.jar
activation.jar.home: ./libs/activation-1.1.1.jar
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public final class BouncyCastleProvider extends Provider
{
private static final Logger LOG = Logger.getLogger(BouncyCastleProvider.class.getName());

private static String info = "BouncyCastle Security Provider v1.80b";
private static String info = "BouncyCastle Security Provider v1.80";

public static final String PROVIDER_NAME = "BC";

Expand Down Expand Up @@ -169,7 +169,7 @@ public final class BouncyCastleProvider extends Provider
*/
public BouncyCastleProvider()
{
super(PROVIDER_NAME, 1.7999, info);
super(PROVIDER_NAME, 1.80, info);

AccessController.doPrivileged(new PrivilegedAction()
{
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.80b";
private static String info = "BouncyCastle Post-Quantum Security Provider v1.80";

public static String PROVIDER_NAME = "BCPQC";

Expand Down Expand Up @@ -50,7 +50,7 @@ public class BouncyCastlePQCProvider
*/
public BouncyCastlePQCProvider()
{
super(PROVIDER_NAME, 1.7999, info);
super(PROVIDER_NAME, 1.80, 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.79";
private static String info = "BouncyCastle Security Provider v1.80";

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.7900, info);
super(PROVIDER_NAME, 1.8000, 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.79";
private static String info = "BouncyCastle Security Provider v1.80";

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.7900, info);
super(PROVIDER_NAME, 1.8000, info);

AccessController.doPrivileged(new PrivilegedAction()
{
Expand Down

0 comments on commit 79a81e2

Please sign in to comment.