CMakeLists.txt | 4 ++-- NEWS | 10 ++++++++++ cpp/Doxyfile | 2 +- poppler/CairoOutputDev.cc | 1 + qt5/src/Doxyfile | 2 +- qt6/src/Doxyfile | 2 +- 6 files changed, 16 insertions(+), 5 deletions(-)
New commits: commit 77e545351b7ac359e19422e8158ff00f6dd597d3 Author: Albert Astals Cid <[email protected]> Date: Fri Jul 2 23:07:57 2021 +0200 poppler 21.07.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 215283dc..d1d3653a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,11 +35,11 @@ if (ECM_FOUND) endif() set(POPPLER_MAJOR_VERSION "21") -set(POPPLER_MINOR_VERSION_STRING "06") +set(POPPLER_MINOR_VERSION_STRING "07") # 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 "1") +set(POPPLER_MICRO_VERSION "0") 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 c1ad2472..2cf040a2 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,13 @@ +Release 21.07.0: + core: + * JBIG2Stream: Do not consider a size-0 to be an error. Issue #535 + * PSOutputDev: fix off-by-one error for image masking in L1/L2 output. Issue #1088 + * CairoOutputDev: Fix memory leak on broken files + * Minor code improvements + + build system: + * set C standard to 11 without extensions + Release 21.06.1: glib: * fix poppler_rectangle_free() regression. Issue #1087 diff --git a/cpp/Doxyfile b/cpp/Doxyfile index d6643bb5..6f622298 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 = 21.06.1 +PROJECT_NUMBER = 21.07.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 85c9f6e5..86345a19 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 = 21.06.1 +PROJECT_NUMBER = 21.07.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 9140be6e..75fb2688 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 = 21.06.1 +PROJECT_NUMBER = 21.07.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. commit a822ba0e4f7240309eaa180230facbceb6d0e08a Author: Albert Astals Cid <[email protected]> Date: Fri Jul 2 23:03:23 2021 +0200 Update (C) diff --git a/poppler/CairoOutputDev.cc b/poppler/CairoOutputDev.cc index 87170849..2cfcb79d 100644 --- a/poppler/CairoOutputDev.cc +++ b/poppler/CairoOutputDev.cc @@ -34,6 +34,7 @@ // Copyright (C) 2019, 2020 Marek Kasik <[email protected]> // Copyright (C) 2020 Michal <[email protected]> // Copyright (C) 2020 Oliver Sander <[email protected]> +// Copyright (C) 2021 Uli Schlachter <[email protected]> // // To see a description of the changes please see the Changelog file that // came with your tarball or type make ChangeLog if you are building from git _______________________________________________ poppler mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/poppler
