Skip to content

Commit 4cf8ed4

Browse files
authored
Bump up the version to 23.09 (#1209)
1 parent 55f9825 commit 4cf8ed4

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# We need 3.12 or later, so that we can set policy CMP0074; see below.
22
cmake_minimum_required(VERSION 3.12)
33

4-
set(PCAPPP_VERSION "22.11+")
4+
set(PCAPPP_VERSION "23.09")
55

66
# MAIN_PROJECT CHECK
77
set(PCAPPP_MAIN_PROJECT OFF)

Common++/header/PcapPlusPlusVersion.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@
1111
*/
1212
namespace pcpp
1313
{
14-
#define PCAPPLUSPLUS_VERSION "22.11+"
15-
#define PCAPPLUSPLUS_VERSION_OFFICIAL "non-official release"
14+
#define PCAPPLUSPLUS_VERSION "23.09"
15+
#define PCAPPLUSPLUS_VERSION_OFFICIAL "official release"
1616

1717
#define PCAPPLUSPLUS_VERSION_FULL "v" PCAPPLUSPLUS_VERSION " (" PCAPPLUSPLUS_VERSION_OFFICIAL ")"
1818

1919
/**
20-
* @return PcapPlusPlus current version, e.g: 22.11. Notice that for non-official releases (which were pulled from GitHub) the version will end with a '+'.
21-
* For example: '22.11+' means non-official release but '22.11' means official release
20+
* @return PcapPlusPlus current version, e.g: 23.09. Notice that for non-official releases (which were pulled from GitHub) the version will end with a '+'.
21+
* For example: '23.09+' means non-official release but '23.09' means official release
2222
*/
2323
inline std::string getPcapPlusPlusVersion() { return PCAPPLUSPLUS_VERSION; }
2424

2525
/**
26-
* @return PcapPlusPlus long version string which includes the version and info whether it's an official or non-official release. For example: "v22.11+ (non-official release)"
27-
* or "v22.11 (official release)"
26+
* @return PcapPlusPlus long version string which includes the version and info whether it's an official or non-official release. For example: "v23.09+ (non-official release)"
27+
* or "v23.09 (official release)"
2828
*/
2929
inline std::string getPcapPlusPlusVersionFull() { return PCAPPLUSPLUS_VERSION_FULL; }
3030

0 commit comments

Comments
 (0)