diff --git a/CHANGES b/CHANGES index 794b87beb..882cccd13 100644 --- a/CHANGES +++ b/CHANGES @@ -5,9 +5,15 @@ This is a high-level summary of the most important changes. For a full list of changes, see the git commit log. - Changes between 8.3.1 and 8.3.2 [xxxx年x月x日] + Changes between 8.3.1 and 8.3.2 [2022年12月12日] - *) + *) 修复C90下的编译问题 + + *) 修复SSL_CTX_dup()函数的bug + + *) 修复NTLS ServerKeyExchange消息的RSA签名问题 + + *) 修复apps/x509的SM2证书签名bug *) 支持新特性 - 添加导出符号前缀 diff --git a/CHANGES.en b/CHANGES.en index f1e2f3821..c39706ba6 100644 --- a/CHANGES.en +++ b/CHANGES.en @@ -5,9 +5,15 @@ This is a high-level summary of the most important changes. For a full list of changes, see the git commit log. - Changes between 8.3.1 and 8.3.2 [xx XXX xxxx] + Changes between 8.3.1 and 8.3.2 [12 Dec 2022] - *) + *) Fix compilation error when using C90 compiler + + *) Fix a bug in SSL_CTX_dup() function + + *) Fix RSA signature issue in NTLS ServerKeyExchange message + + *) Fix apps/x509 SM2 cert signing bug *) Support new feature: add export symbol prefix diff --git a/include/openssl/opensslv.h b/include/openssl/opensslv.h index 1dca0242c..3552da2da 100644 --- a/include/openssl/opensslv.h +++ b/include/openssl/opensslv.h @@ -108,8 +108,8 @@ extern "C" { * 1.9.5 0x1090500f */ -# define BABASSL_VERSION_NUMBER 0x80302000L -# define BABASSL_VERSION_TEXT "BabaSSL 8.3.2-dev" +# define BABASSL_VERSION_NUMBER 0x8030200fL +# define BABASSL_VERSION_TEXT "BabaSSL 8.3.2" #ifdef __cplusplus }