Skip to content

Commit

Permalink
release 1.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aleks-f committed Jul 16, 2022
2 parents d799921 + e95e986 commit 92fac97
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
This is the changelog file for the POCO C++ Libraries.

Release 1.12.1 (2022-07-18)
===========================

- GH #3677 PocoFoundationConfig.cmake should now check for PCRE2
- GH #3686 SIGSEGV in OSSL_PROVIDER_unload with static OpenSSL3


Release 1.12.0 (2022-07-08)
===========================

Expand Down
4 changes: 2 additions & 2 deletions DLLVersion.rc
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

#include "winres.h"

#define POCO_VERSION 1,12,0,0
#define POCO_VERSION_STR "1.12.0"
#define POCO_VERSION 1,12,1,0
#define POCO_VERSION_STR "1.12.1"

VS_VERSION_INFO VERSIONINFO
FILEVERSION POCO_VERSION
Expand Down
2 changes: 1 addition & 1 deletion Foundation/cmake/PocoFoundationConfig.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ if(@POCO_UNBUNDLED@)
include(CMakeFindDependencyMacro)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}")
find_dependency(ZLIB REQUIRED)
find_dependency(PCRE REQUIRED)
find_dependency(PCRE2 REQUIRED)
endif()

include("${CMAKE_CURRENT_LIST_DIR}/PocoFoundationTargets.cmake")
2 changes: 1 addition & 1 deletion Foundation/include/Poco/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@
// Bx: beta releases
//

#define POCO_VERSION 0x010C0000
#define POCO_VERSION 0x010C0100

#endif // Foundation_Version_INCLUDED
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.12.0
1.12.1
8 changes: 8 additions & 0 deletions doc/99100-ReleaseNotes.page
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ POCO C++ Libraries Release Notes
AAAIntroduction


!!!Release 1.12.1

!!Summary of Changes

- GH #3677 PocoFoundationConfig.cmake should now check for PCRE2
- GH #3686 SIGSEGV in OSSL_PROVIDER_unload with static OpenSSL3


!!!Release 1.12.0

!!Summary of Changes
Expand Down
2 changes: 1 addition & 1 deletion libversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
90
91

0 comments on commit 92fac97

Please sign in to comment.