diff -Nru poppler-21.06.0/ChangeLog poppler-21.06.1/ChangeLog --- poppler-21.06.0/ChangeLog 2021-06-01 21:14:37.000000000 +0000 +++ poppler-21.06.1/ChangeLog 2021-06-03 20:51:08.000000000 +0000 @@ -1,3 +1,29 @@ +commit b782d4be006c184c49c6b46bec1d23dd28f1683a +Author: Albert Astals Cid +Date: Thu Jun 3 22:42:20 2021 +0200 + + poppler 21.06.1 + + CMakeLists.txt | 2 +- + NEWS | 4 ++++ + cpp/Doxyfile | 2 +- + qt5/src/Doxyfile | 2 +- + qt6/src/Doxyfile | 2 +- + 5 files changed, 8 insertions(+), 4 deletions(-) + +commit b9314b06c7e458f26e7ca0d55b071f4eb1dced58 +Author: Nelson Benítez León +Date: Wed Jun 2 15:25:47 2021 +0100 + + glib: fix poppler_rectangle_free() regression + + Regression from e3fed321f230a4a91df873e6d9a213ba8dad6694 + + Fixes issue #1087 + + glib/poppler-page.cc | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + commit 07edd3d3933549578f91f5744ea5d82feadeb3f6 Author: Albert Astals Cid Date: Tue Jun 1 23:07:40 2021 +0200 diff -Nru poppler-21.06.0/CMakeLists.txt poppler-21.06.1/CMakeLists.txt --- poppler-21.06.0/CMakeLists.txt 2021-06-01 21:07:40.000000000 +0000 +++ poppler-21.06.1/CMakeLists.txt 2021-06-03 20:42:20.000000000 +0000 @@ -39,7 +39,7 @@ # 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 -Nru poppler-21.06.0/cpp/Doxyfile poppler-21.06.1/cpp/Doxyfile --- poppler-21.06.0/cpp/Doxyfile 2021-06-01 21:07:40.000000000 +0000 +++ poppler-21.06.1/cpp/Doxyfile 2021-06-03 20:42:20.000000000 +0000 @@ -31,7 +31,7 @@ # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 21.06.0 +PROJECT_NUMBER = 21.06.1 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff -Nru poppler-21.06.0/debian/changelog poppler-21.06.1/debian/changelog --- poppler-21.06.0/debian/changelog 2021-06-03 10:23:29.000000000 +0000 +++ poppler-21.06.1/debian/changelog 2021-06-21 14:27:09.000000000 +0000 @@ -1,4 +1,10 @@ -poppler (21.06.0-0build1) impish; urgency=medium +poppler (21.06.1-1) experimental; urgency=medium + + * New upstream version + + -- Sebastien Bacher Mon, 21 Jun 2021 16:27:09 +0200 + +poppler (21.06.0-1) experimental; urgency=medium * New upstream version, updated for the soname change * debian/control: diff -Nru poppler-21.06.0/glib/poppler-page.cc poppler-21.06.1/glib/poppler-page.cc --- poppler-21.06.0/glib/poppler-page.cc 2021-06-01 21:07:40.000000000 +0000 +++ poppler-21.06.1/glib/poppler-page.cc 2021-06-03 20:42:20.000000000 +0000 @@ -1663,7 +1663,8 @@ */ void poppler_rectangle_free(PopplerRectangle *rectangle) { - g_slice_free(PopplerRectangle, rectangle); + auto ext_rectangle = reinterpret_cast(rectangle); + g_slice_free(PopplerRectangleExtended, ext_rectangle); } /** diff -Nru poppler-21.06.0/glib/reference/html/index.html poppler-21.06.1/glib/reference/html/index.html --- poppler-21.06.0/glib/reference/html/index.html 2021-06-01 21:10:53.000000000 +0000 +++ poppler-21.06.1/glib/reference/html/index.html 2021-06-03 20:47:15.000000000 +0000 @@ -15,7 +15,7 @@

- for Poppler 21.06.0 + for Poppler 21.06.1


diff -Nru poppler-21.06.0/glib/reference/html/poppler-Poppler-Features.html poppler-21.06.1/glib/reference/html/poppler-Poppler-Features.html --- poppler-21.06.0/glib/reference/html/poppler-Poppler-Features.html 2021-06-01 21:10:54.000000000 +0000 +++ poppler-21.06.1/glib/reference/html/poppler-Poppler-Features.html 2021-06-03 20:47:15.000000000 +0000 @@ -196,7 +196,7 @@

POPPLER_MICRO_VERSION

-
#define POPPLER_MICRO_VERSION (0)
+
#define POPPLER_MICRO_VERSION (1)
 

The micro version number of the poppler header files (e.g. in poppler version 0.1.2 this is 2.)

diff -Nru poppler-21.06.0/NEWS poppler-21.06.1/NEWS --- poppler-21.06.0/NEWS 2021-06-01 21:07:40.000000000 +0000 +++ poppler-21.06.1/NEWS 2021-06-03 20:42:20.000000000 +0000 @@ -1,3 +1,7 @@ +Release 21.06.1: + glib: + * fix poppler_rectangle_free() regression. Issue #1087 + Release 21.06.0: core: * Fix rendering of some extended latin1 characters in annotations. Issue #1070 diff -Nru poppler-21.06.0/qt5/src/Doxyfile poppler-21.06.1/qt5/src/Doxyfile --- poppler-21.06.0/qt5/src/Doxyfile 2021-06-01 21:07:40.000000000 +0000 +++ poppler-21.06.1/qt5/src/Doxyfile 2021-06-03 20:42:20.000000000 +0000 @@ -31,7 +31,7 @@ # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 21.06.0 +PROJECT_NUMBER = 21.06.1 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff -Nru poppler-21.06.0/qt6/src/Doxyfile poppler-21.06.1/qt6/src/Doxyfile --- poppler-21.06.0/qt6/src/Doxyfile 2021-06-01 21:07:40.000000000 +0000 +++ poppler-21.06.1/qt6/src/Doxyfile 2021-06-03 20:42:20.000000000 +0000 @@ -31,7 +31,7 @@ # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 21.06.0 +PROJECT_NUMBER = 21.06.1 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put.