Skip to content

Commit b93f52e

Browse files
Bump version number to 1.2.0 and api version number to 19 (#611)
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.
1 parent a489a01 commit b93f52e

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

crypto/fipsmodule/service_indicator/service_indicator_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2578,7 +2578,7 @@ TEST(ServiceIndicatorTest, DRBG) {
25782578
// Since this is running in FIPS mode it should end in FIPS
25792579
// Update this when the AWS-LC version number is modified
25802580
TEST(ServiceIndicatorTest, AWSLCVersionString) {
2581-
ASSERT_STREQ(awslc_version_string(), "AWS-LC FIPS 1.1.0");
2581+
ASSERT_STREQ(awslc_version_string(), "AWS-LC FIPS 1.2.0");
25822582
}
25832583

25842584
#else
@@ -2621,6 +2621,6 @@ TEST(ServiceIndicatorTest, BasicTest) {
26212621
// Since this is not running in FIPS mode it shouldn't end in FIPS
26222622
// Update this when the AWS-LC version number is modified
26232623
TEST(ServiceIndicatorTest, AWSLCVersionString) {
2624-
ASSERT_STREQ(awslc_version_string(), "AWS-LC 1.1.0");
2624+
ASSERT_STREQ(awslc_version_string(), "AWS-LC 1.2.0");
26252625
}
26262626
#endif // AWSLC_FIPS

include/openssl/base.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -205,17 +205,15 @@ extern "C" {
205205
// against multiple revisions of BoringSSL at the same time. It is not
206206
// recommended to do so for longer than is necessary.
207207

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

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

220218
#if defined(BORINGSSL_SHARED_LIBRARY)
221219

0 commit comments

Comments
 (0)