CMakeLists.txt | 2 +- NEWS | 16 +++++++++++++++- cpp/Doxyfile | 2 +- qt5/src/Doxyfile | 2 +- qt6/src/Doxyfile | 2 +- 5 files changed, 19 insertions(+), 5 deletions(-)
New commits: commit 7673e1fd712416a5d65406d7447a1c3d5ada057b Author: Albert Astals Cid <[email protected]> Date: Wed Feb 1 17:42:42 2023 +0100 poppler 23.02.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 4768ac81..27403fdf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,7 +40,7 @@ if (ECM_FOUND) endif() set(POPPLER_MAJOR_VERSION "23") -set(POPPLER_MINOR_VERSION_STRING "01") +set(POPPLER_MINOR_VERSION_STRING "02") # We want the string version to have 08 but the integer version can't have a leading 0 since otherwise it's considered octal # So strip a leading 0 if found in POPPLER_MINOR_VERSION_STRING and store the result in POPPLER_MINOR_VERSION string(REGEX REPLACE "^0?(.+)$" "\\1" POPPLER_MINOR_VERSION "${POPPLER_MINOR_VERSION_STRING}") diff --git a/NEWS b/NEWS index 17b175f7..d1f0d41e 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,17 @@ +Release 23.02.0: + core: + * CairoOutputDev: Fix rendering of color type 3 fonts + * CairoOutputDev: Add handling matte entry + * Fix segfault on wrong nssdir + * Fix "NSS could not shutdown" + + utils: + * pdfsig: Point out supports PKCS#11 URIs as nickname + + + qt6: + * + Release 23.01.0: core: * PDFDoc::sign: Fix crash if font can't be found @@ -14,7 +28,7 @@ Release 23.01.0: * Improve include path handling qt6: - - Use less deprecated functions + * Use less deprecated functions Release 22.12.0: core: diff --git a/cpp/Doxyfile b/cpp/Doxyfile index e956a4c1..583711d8 100644 --- a/cpp/Doxyfile +++ b/cpp/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler CPP" # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 23.01.0 +PROJECT_NUMBER = 23.02.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/qt5/src/Doxyfile b/qt5/src/Doxyfile index edd87ecc..69f30660 100644 --- a/qt5/src/Doxyfile +++ b/qt5/src/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler Qt5" # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 23.01.0 +PROJECT_NUMBER = 23.02.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/qt6/src/Doxyfile b/qt6/src/Doxyfile index 64450c43..7aa4b436 100644 --- a/qt6/src/Doxyfile +++ b/qt6/src/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler Qt6" # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 23.01.0 +PROJECT_NUMBER = 23.02.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put.
