CMakeLists.txt | 2 +- NEWS | 9 +++++++++ cpp/Doxyfile | 2 +- qt5/src/Doxyfile | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-)
New commits: commit 5d3e71c8215997a96d2ade7272217087f7e59fe2 Author: Albert Astals Cid <[email protected]> Date: Sat Dec 5 23:14:09 2020 +0100 Poppler 20.12.1 diff --git a/CMakeLists.txt b/CMakeLists.txt index 37a7322e..1573249a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,7 +38,7 @@ set(POPPLER_MINOR_VERSION_STRING "12") # 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}") -set(POPPLER_MICRO_VERSION "0") +set(POPPLER_MICRO_VERSION "1") set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION_STRING}.${POPPLER_MICRO_VERSION}") set(CMAKE_CXX_STANDARD 14) diff --git a/NEWS b/NEWS index a38eaf4f..a2dfab69 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +Release 20.12.1: + core: + * PSOutputDev: fixing regression in the rasterization code. Issue #1002 + * Add missing profile copy operation in GfxICCBasedColorSpace::copy() + * Fix issue in broken files + + build system: + * Use modern CMake linking for Qt and boost + Release 20.12.0: core: * Draw better circles for circle annotations diff --git a/cpp/Doxyfile b/cpp/Doxyfile index 838f30fc..e1770c63 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 = 20.12.0 +PROJECT_NUMBER = 20.12.1 # 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 0b19d73d..8677da3e 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 = 20.12.0 +PROJECT_NUMBER = 20.12.1 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. _______________________________________________ poppler mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/poppler
