Skip to content

Commit

Permalink
Bump release version to v1.0.1 (#380)
Browse files Browse the repository at this point in the history
Prepare new release by bumping release version number string to 1.0.1.
  • Loading branch information
torben-hansen authored Feb 2, 2022
1 parent c30170a commit b404987
Show file tree
Hide file tree
Showing 2 changed files with 9 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 @@ -2138,7 +2138,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 0.0.2");
ASSERT_STREQ(awslc_version_string(), "AWS-LC FIPS 1.0.1");
}

#else
Expand Down Expand Up @@ -2183,6 +2183,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 0.0.2");
ASSERT_STREQ(awslc_version_string(), "AWS-LC 1.0.1");
}
#endif // AWSLC_FIPS
11 changes: 7 additions & 4 deletions include/openssl/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -203,10 +203,13 @@ extern "C" {

#define AWSLC_API_VERSION 16

// In order to keep track of any changes to AWLC we introduce a string that tracks with the public Github
// release version at https://github.com/awslabs/aws-lc

#define AWSLC_VERSION_NUMBER_STRING "0.0.2"
// 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.0.1"

#if defined(BORINGSSL_SHARED_LIBRARY)

Expand Down

0 comments on commit b404987

Please sign in to comment.