Skip to content

Commit

Permalink
Bump version number to 1.2.0 and api version number to 19 (#611)
Browse files Browse the repository at this point in the history
Prepare new release by bumping release version number string to 1.2.0. Also bump API version to 19 because of (e.g.) additions of new ciphers.
  • Loading branch information
torben-hansen authored Sep 1, 2022
1 parent a489a01 commit b93f52e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions crypto/fipsmodule/service_indicator/service_indicator_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2578,7 +2578,7 @@ TEST(ServiceIndicatorTest, DRBG) {
// Since this is running in FIPS mode it should end in FIPS
// Update this when the AWS-LC version number is modified
TEST(ServiceIndicatorTest, AWSLCVersionString) {
ASSERT_STREQ(awslc_version_string(), "AWS-LC FIPS 1.1.0");
ASSERT_STREQ(awslc_version_string(), "AWS-LC FIPS 1.2.0");
}

#else
Expand Down Expand Up @@ -2621,6 +2621,6 @@ TEST(ServiceIndicatorTest, BasicTest) {
// Since this is not running in FIPS mode it shouldn't end in FIPS
// Update this when the AWS-LC version number is modified
TEST(ServiceIndicatorTest, AWSLCVersionString) {
ASSERT_STREQ(awslc_version_string(), "AWS-LC 1.1.0");
ASSERT_STREQ(awslc_version_string(), "AWS-LC 1.2.0");
}
#endif // AWSLC_FIPS
6 changes: 2 additions & 4 deletions include/openssl/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -205,17 +205,15 @@ extern "C" {
// against multiple revisions of BoringSSL at the same time. It is not
// recommended to do so for longer than is necessary.

// Bump version from 17 to 18.
// - Import new APIs |EVP_aes_128/256_cbc_hmac_sha1/256| from OpenSSL.
#define AWSLC_API_VERSION 18
#define AWSLC_API_VERSION 19

// This string tracks the most current production release version on Github
// https://github.com/awslabs/aws-lc/releases.
// When bumping the encoded version number, also update the test fixture:
// ServiceIndicatorTest.AWSLCVersionString
// Note: there are two versions of this test. Only one test is compiled
// depending on FIPS mode.
#define AWSLC_VERSION_NUMBER_STRING "1.1.0"
#define AWSLC_VERSION_NUMBER_STRING "1.2.0"

#if defined(BORINGSSL_SHARED_LIBRARY)

Expand Down

0 comments on commit b93f52e

Please sign in to comment.