diff --git a/Doxyfile b/Doxyfile index bc814409..74386e51 100644 --- a/Doxyfile +++ b/Doxyfile @@ -41,7 +41,7 @@ PROJECT_NAME = Crypto++ # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 8.1 +PROJECT_NUMBER = 8.2 # 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 83ff39b1..12b2edf5 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -1349,7 +1349,7 @@ libcryptopp.pc: @echo '' >> libcryptopp.pc @echo 'Name: Crypto++' >> libcryptopp.pc @echo 'Description: Crypto++ cryptographic library' >> libcryptopp.pc - @echo 'Version: 8.1' >> libcryptopp.pc + @echo 'Version: 8.2' >> libcryptopp.pc @echo 'URL: https://cryptopp.com/' >> libcryptopp.pc @echo '' >> libcryptopp.pc @echo 'Cflags: -I$${includedir}' >> libcryptopp.pc diff --git a/History.txt b/History.txt index 15bf004f..736bcf93 100644 --- a/History.txt +++ b/History.txt @@ -455,10 +455,10 @@ last several releases. 8.1.0 - February 22, 2019 - minor release, no recompile of programs required - expanded community input and support - 56 unique contributors as of this release + * 56 unique contributors as of this release - fix OS X PowerPC builds with Clang - add Microsoft ARM64 support - - fix iPhone Simulator build due to missign symbols + - fix iPhone Simulator build due to missing symbols - add CRYPTOPP_BUGGY_SIMD_LOAD_AND_STORE - add carryless multiplies for NIST b233 and k233 curves - fix OpenMP build due to use of OpenMP 4 with down-level compilers diff --git a/Readme.txt b/Readme.txt index d5ea1b49..8602c5cf 100644 --- a/Readme.txt +++ b/Readme.txt @@ -296,7 +296,7 @@ for the record back to Crypto++ 1.0. * 56 unique contributors as of this release - fix OS X PowerPC builds with Clang - add Microsoft ARM64 support - - fix iPhone Simulator build due to missign symbols + - fix iPhone Simulator build due to missing symbols - add CRYPTOPP_BUGGY_SIMD_LOAD_AND_STORE - add carryless multiplies for NIST b233 and k233 curves - fix OpenMP build due to use of OpenMP 4 with down-level compilers diff --git a/TestScripts/change-version.sh b/TestScripts/change-version.sh index f3226b8d..af2475ed 100755 --- a/TestScripts/change-version.sh +++ b/TestScripts/change-version.sh @@ -4,11 +4,14 @@ # building the docs. Before running the script, copy it to the root # directory. After running this script, you can 'make docs' -sed 's|Library 8.1 API|Library 8.0 API|g' cryptlib.h > cryptlib.h.new +sed 's|Library 8.2 API|Library 8.1 API|g' cryptlib.h > cryptlib.h.new mv cryptlib.h.new cryptlib.h -sed 's|= 8.1|= 8.0|g' Doxyfile > Doxyfile.new +sed 's|= 8.2|= 8.1|g' Doxyfile > Doxyfile.new mv Doxyfile.new Doxyfile -sed 's|CRYPTOPP_VERSION 810|CRYPTOPP_VERSION 800|g' config.h > config.h.new +sed 's|CRYPTOPP_MINOR 2|CRYPTOPP_MINOR 1|g' config.h > config.h.new +mv config.h.new config.h + +sed 's|CRYPTOPP_VERSION 820|CRYPTOPP_VERSION 810|g' config.h > config.h.new mv config.h.new config.h diff --git a/config.h b/config.h index 4516d2b3..3642b3cf 100644 --- a/config.h +++ b/config.h @@ -116,7 +116,10 @@ // the version of the library the headers came from. It is not // necessarily the version of the library built as a shared object if // versions are inadvertently mixed and matched. -#define CRYPTOPP_VERSION 810 +#define CRYPTOPP_MAJOR 8 +#define CRYPTOPP_MINOR 2 +#define CRYPTOPP_REVISION 0 +#define CRYPTOPP_VERSION 820 // Define this if you want to set a prefix for TestData/ and TestVectors/ // Be sure to add the trailing slash since its simple concatenation. diff --git a/cryptlib.h b/cryptlib.h index 0f5c112e..8049c511 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.1 API Reference +/*! \mainpage Crypto++ Library 8.2 API Reference
Abstract Base Classes
cryptlib.h diff --git a/cryptopp.rc b/cryptopp.rc index 07bfea74..6961418f 100644 --- a/cryptopp.rc +++ b/cryptopp.rc @@ -27,8 +27,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US // VS_VERSION_INFO VERSIONINFO - FILEVERSION 8,1,0,0 - PRODUCTVERSION 8,1,0,0 + FILEVERSION 8,2,0,0 + PRODUCTVERSION 8,2,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", "Wei Dai" VALUE "FileDescription", "Crypto++® Library DLL" - VALUE "FileVersion", "8, 1, 0, 0" + VALUE "FileVersion", "8, 2, 0, 0" VALUE "InternalName", "cryptopp" - VALUE "LegalCopyright", "Copyright© 1995-2018 by Wei Dai" + VALUE "LegalCopyright", "Copyright© 1995-2019 by Wei Dai" VALUE "LegalTrademarks", "Crypto++®" VALUE "OriginalFilename", "cryptopp.dll" VALUE "ProductName", "Crypto++® Library" - VALUE "ProductVersion", "8, 1, 0, 0" + VALUE "ProductVersion", "8, 2, 0, 0" END END BLOCK "VarFileInfo"