Skip to content

Commit 0825e93

Browse files
committed
Post-release version increment
1 parent 4d0cad5 commit 0825e93

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = Crypto++
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 8.8
41+
PROJECT_NUMBER = 8.9
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

GNUmakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1540,7 +1540,7 @@ cryptopp.pc libcryptopp.pc:
15401540
@echo '' >> libcryptopp.pc
15411541
@echo 'Name: Crypto++' >> libcryptopp.pc
15421542
@echo 'Description: Crypto++ cryptographic library' >> libcryptopp.pc
1543-
@echo 'Version: 8.8' >> libcryptopp.pc
1543+
@echo 'Version: 8.9' >> libcryptopp.pc
15441544
@echo 'URL: https://cryptopp.com/' >> libcryptopp.pc
15451545
@echo '' >> libcryptopp.pc
15461546
@echo 'Cflags: -I$${includedir}' >> libcryptopp.pc

Readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Crypto++: free C++ Class Library of Cryptographic Schemes
2-
Version 8.8 - June 25, 2023
2+
Version 8.9 - TBD
33

44
Crypto++ Library is a free C++ class library of cryptographic schemes.
55
Currently the library contains the following algorithms:

TestScripts/change-version.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@
1616
#
1717
#############################################################################
1818

19-
sed 's/Library 8.8 API/Library 8.7 API/g' cryptlib.h > cryptlib.h.new
19+
sed 's/Library 8.9 API/Library 8.8 API/g' cryptlib.h > cryptlib.h.new
2020
mv cryptlib.h.new cryptlib.h
2121

22-
sed 's/= 8.8/= 8.7$/g' Doxyfile > Doxyfile.new
22+
sed 's/= 8.9$/= 8.8/g' Doxyfile > Doxyfile.new
2323
mv Doxyfile.new Doxyfile
2424

25-
sed 's/CRYPTOPP_MINOR 7/CRYPTOPP_MINOR 8/g' config_ver.h > config_ver.h.new
25+
sed 's/CRYPTOPP_MINOR 9/CRYPTOPP_MINOR 8/g' config_ver.h > config_ver.h.new
2626
mv config_ver.h.new config_ver.h
2727

2828
# sed 'CRYPTOPP_REVISION CRYPTOPP_REVISION 1/g' config_ver.h > config_ver.h.new
2929
# mv config_ver.h.new config_ver.h
3030

31-
sed 's/CRYPTOPP_VERSION 880/CRYPTOPP_VERSION 870/g' config_ver.h > config_ver.h.new
31+
sed 's/CRYPTOPP_VERSION 890/CRYPTOPP_VERSION 880/g' config_ver.h > config_ver.h.new
3232
mv config_ver.h.new config_ver.h

config_ver.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/// as a shared object if versions are inadvertently mixed and matched.
3636
/// \sa CRYPTOPP_VERSION, LibraryVersion(), HeaderVersion()
3737
/// \since Crypto++ 8.2
38-
#define CRYPTOPP_MINOR 8
38+
#define CRYPTOPP_MINOR 9
3939
/// \brief Library revision number
4040
/// \details CRYPTOPP_REVISION reflects the revision number of the library the
4141
/// headers came from. It is not necessarily the revision of the library built
@@ -50,7 +50,7 @@
5050
/// shared object if versions are inadvertently mixed and matched.
5151
/// \sa CRYPTOPP_MAJOR, CRYPTOPP_MINOR, CRYPTOPP_REVISION, LibraryVersion(), HeaderVersion()
5252
/// \since Crypto++ 5.6
53-
#define CRYPTOPP_VERSION 880
53+
#define CRYPTOPP_VERSION 890
5454

5555
// Compiler version macros
5656

cryptlib.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// \file cryptlib.h
44
/// \brief Abstract base classes that provide a uniform interface to this library.
55

6-
/*! \mainpage Crypto++ Library 8.8 API Reference
6+
/*! \mainpage Crypto++ Library 8.9 API Reference
77
<dl>
88
<dt>Abstract Base Classes<dd>
99
cryptlib.h

cryptopp.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
2727
//
2828

2929
VS_VERSION_INFO VERSIONINFO
30-
FILEVERSION 8,8,0,0
31-
PRODUCTVERSION 8,8,0,0
30+
FILEVERSION 8,9,0,0
31+
PRODUCTVERSION 8,9,0,0
3232
FILEFLAGSMASK 0x3fL
3333
#ifdef _DEBUG
3434
FILEFLAGS 0x1L
@@ -46,13 +46,13 @@ BEGIN
4646
VALUE "Comments", "Free crypto library, more information available at www.cryptopp.com"
4747
VALUE "CompanyName", "Crypto++� project"
4848
VALUE "FileDescription", "Crypto++� Library DLL"
49-
VALUE "FileVersion", "8, 8, 0, 0"
49+
VALUE "FileVersion", "8, 9, 0, 0"
5050
VALUE "InternalName", "cryptopp"
5151
VALUE "LegalCopyright", "Copyright� 1995-2021 by Wei Dai"
5252
VALUE "LegalTrademarks", "Crypto++�"
5353
VALUE "OriginalFilename", "cryptopp.dll"
5454
VALUE "ProductName", "Crypto++� Library"
55-
VALUE "ProductVersion", "8, 8, 0, 0"
55+
VALUE "ProductVersion", "8, 9, 0, 0"
5656
END
5757
END
5858
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)