From 0825e938ba65fa0bf84fb2b4ea4c05f56b63c489 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sun, 25 Jun 2023 15:11:06 -0400 Subject: [PATCH] Post-release version increment --- Doxyfile | 2 +- GNUmakefile | 2 +- Readme.txt | 2 +- TestScripts/change-version.sh | 8 ++++---- config_ver.h | 4 ++-- cryptlib.h | 2 +- cryptopp.rc | 8 ++++---- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Doxyfile b/Doxyfile index 8fadb40e..3ccf2472 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = Crypto++ # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 8.8 +PROJECT_NUMBER = 8.9 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/GNUmakefile b/GNUmakefile index b1f4af01..fd639b9b 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1540,7 +1540,7 @@ cryptopp.pc libcryptopp.pc: @echo '' >> libcryptopp.pc @echo 'Name: Crypto++' >> libcryptopp.pc @echo 'Description: Crypto++ cryptographic library' >> libcryptopp.pc - @echo 'Version: 8.8' >> libcryptopp.pc + @echo 'Version: 8.9' >> libcryptopp.pc @echo 'URL: https://cryptopp.com/' >> libcryptopp.pc @echo '' >> libcryptopp.pc @echo 'Cflags: -I$${includedir}' >> libcryptopp.pc diff --git a/Readme.txt b/Readme.txt index aea4bb30..20683c3e 100644 --- a/Readme.txt +++ b/Readme.txt @@ -1,5 +1,5 @@ Crypto++: free C++ Class Library of Cryptographic Schemes -Version 8.8 - June 25, 2023 +Version 8.9 - TBD Crypto++ Library is a free C++ class library of cryptographic schemes. Currently the library contains the following algorithms: diff --git a/TestScripts/change-version.sh b/TestScripts/change-version.sh index 48ed17ec..c7a0af4b 100755 --- a/TestScripts/change-version.sh +++ b/TestScripts/change-version.sh @@ -16,17 +16,17 @@ # ############################################################################# -sed 's/Library 8.8 API/Library 8.7 API/g' cryptlib.h > cryptlib.h.new +sed 's/Library 8.9 API/Library 8.8 API/g' cryptlib.h > cryptlib.h.new mv cryptlib.h.new cryptlib.h -sed 's/= 8.8/= 8.7$/g' Doxyfile > Doxyfile.new +sed 's/= 8.9$/= 8.8/g' Doxyfile > Doxyfile.new mv Doxyfile.new Doxyfile -sed 's/CRYPTOPP_MINOR 7/CRYPTOPP_MINOR 8/g' config_ver.h > config_ver.h.new +sed 's/CRYPTOPP_MINOR 9/CRYPTOPP_MINOR 8/g' config_ver.h > config_ver.h.new mv config_ver.h.new config_ver.h # sed 'CRYPTOPP_REVISION CRYPTOPP_REVISION 1/g' config_ver.h > config_ver.h.new # mv config_ver.h.new config_ver.h -sed 's/CRYPTOPP_VERSION 880/CRYPTOPP_VERSION 870/g' config_ver.h > config_ver.h.new +sed 's/CRYPTOPP_VERSION 890/CRYPTOPP_VERSION 880/g' config_ver.h > config_ver.h.new mv config_ver.h.new config_ver.h diff --git a/config_ver.h b/config_ver.h index b89eabb2..e233e9da 100644 --- a/config_ver.h +++ b/config_ver.h @@ -35,7 +35,7 @@ /// as a shared object if versions are inadvertently mixed and matched. /// \sa CRYPTOPP_VERSION, LibraryVersion(), HeaderVersion() /// \since Crypto++ 8.2 -#define CRYPTOPP_MINOR 8 +#define CRYPTOPP_MINOR 9 /// \brief Library revision number /// \details CRYPTOPP_REVISION reflects the revision number of the library the /// headers came from. It is not necessarily the revision of the library built @@ -50,7 +50,7 @@ /// shared object if versions are inadvertently mixed and matched. /// \sa CRYPTOPP_MAJOR, CRYPTOPP_MINOR, CRYPTOPP_REVISION, LibraryVersion(), HeaderVersion() /// \since Crypto++ 5.6 -#define CRYPTOPP_VERSION 880 +#define CRYPTOPP_VERSION 890 // Compiler version macros diff --git a/cryptlib.h b/cryptlib.h index e7a6e1c2..df8d58b2 100644 --- a/cryptlib.h +++ b/cryptlib.h @@ -3,7 +3,7 @@ /// \file cryptlib.h /// \brief Abstract base classes that provide a uniform interface to this library. -/*! \mainpage Crypto++ Library 8.8 API Reference +/*! \mainpage Crypto++ Library 8.9 API Reference
Abstract Base Classes
cryptlib.h diff --git a/cryptopp.rc b/cryptopp.rc index 8ac79818..9fd60e8a 100644 --- a/cryptopp.rc +++ b/cryptopp.rc @@ -27,8 +27,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US // VS_VERSION_INFO VERSIONINFO - FILEVERSION 8,8,0,0 - PRODUCTVERSION 8,8,0,0 + FILEVERSION 8,9,0,0 + PRODUCTVERSION 8,9,0,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -46,13 +46,13 @@ BEGIN VALUE "Comments", "Free crypto library, more information available at www.cryptopp.com" VALUE "CompanyName", "Crypto++® project" VALUE "FileDescription", "Crypto++® Library DLL" - VALUE "FileVersion", "8, 8, 0, 0" + VALUE "FileVersion", "8, 9, 0, 0" VALUE "InternalName", "cryptopp" VALUE "LegalCopyright", "Copyright© 1995-2021 by Wei Dai" VALUE "LegalTrademarks", "Crypto++®" VALUE "OriginalFilename", "cryptopp.dll" VALUE "ProductName", "Crypto++® Library" - VALUE "ProductVersion", "8, 8, 0, 0" + VALUE "ProductVersion", "8, 9, 0, 0" END END BLOCK "VarFileInfo"