Skip to content

Commit a3707d3

Browse files
authored
mstd updated (#6)
1 parent ffe7815 commit a3707d3

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.30)
2-
project(pcre2cpp VERSION 1.2.8 LANGUAGES CXX)
2+
project(pcre2cpp VERSION 1.2.9 LANGUAGES CXX)
33

44
option(BUILD_SHARED_LIBS "Build shared library" OFF)
55
option(PCRE2CPP_BUILD_TESTS "Build tests" ${PROJECT_IS_TOP_LEVEL})
@@ -13,7 +13,7 @@ option(PCRE2CPP_ENABLE_CLANG_TIDY "Enables clang-tidy checks" ${PROJECT_IS_T
1313
option(PCRE2CPP_INSTALL "Enables installation of this project" ${PROJECT_IS_TOP_LEVEL})
1414
option(PCRE2CPP_INSTALL_TEST "This is only to test if installation of pcre2cpp works" OFF)
1515

16-
option(PCRE2CPP_MSTD_EXTERNAL "Uses users own mstd library (tested and compatible with: 1.5.4)" OFF)
16+
option(PCRE2CPP_MSTD_EXTERNAL "Uses users own mstd library (tested and compatible with: 1.5.5)" OFF)
1717
option(PCRE2CPP_PCRE2_EXTERNAL "Uses users own pcre2 library (tested and compatible with: 10.47)" OFF)
1818

1919
option(PCRE2CPP_ENABLE_CXX20 "Enables C++20 features" OFF)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ If you want to use external libraries not installed by project using CPM
3939

4040
| Cmake option Name | Description | Default |
4141
|:--------------------------|:-----------------------------------------------------------------|:-------:|
42-
| `PCRE2CPP_MSTD_EXTERNAL` | Uses users own mstd library (tested and compatible with: 1.5.4) | OFF |
42+
| `PCRE2CPP_MSTD_EXTERNAL` | Uses users own mstd library (tested and compatible with: 1.5.5) | OFF |
4343
| `PCRE2CPP_PCRE2_EXTERNAL` | Uses users own pcre2 library (tested and compatible with: 10.47) | OFF |
4444

4545
### Project developing options

cmake/third_party.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ endif()
5656

5757
# MSTD
5858
if (DOWNLOAD_MSTD)
59-
CPMAddPackage("gh:maipa01/mstd#v1.5.4")
59+
CPMAddPackage("gh:maipa01/mstd#v1.5.5")
6060
endif()
6161

6262
# GTEST

pcre2cpp/include/pcre2cpp/config.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
* @brief pcre2cpp version patch number
5353
* @ingroup pcre2cpp
5454
*/
55-
#define PCRE2CPP_VERSION_PATCH 8
55+
#define PCRE2CPP_VERSION_PATCH 9
5656

5757
/**
5858
* @brief stringify helper
@@ -95,7 +95,7 @@
9595
* @brief pcre2cpp last update day
9696
* @ingroup pcre2cpp
9797
*/
98-
#define PCRE2CPP_LAST_UPDATE_DAY 04
98+
#define PCRE2CPP_LAST_UPDATE_DAY 14
9999
/**
100100
* @brief pcre2cpp last update month
101101
* @ingroup pcre2cpp

0 commit comments

Comments
 (0)