summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2021-05-02 21:36:32 +0200
committerAlbert Astals Cid <aacid@kde.org>2021-05-02 21:36:32 +0200
commit7961ff99df6db70319548b07249194cabfc74783 (patch)
treeba98425f396058e712990f7137a9dc3181a8e5a8
parent17b2b174d1e867588b4fe839fb0e7194bca60a52 (diff)
Poppler 21.05.0poppler-21.05.0
-rw-r--r--CMakeLists.txt4
-rw-r--r--NEWS19
-rw-r--r--cpp/Doxyfile2
-rw-r--r--glib/CMakeLists.txt2
-rw-r--r--qt5/src/CMakeLists.txt2
-rw-r--r--qt5/src/Doxyfile2
-rw-r--r--qt6/src/CMakeLists.txt2
-rw-r--r--qt6/src/Doxyfile2
8 files changed, 27 insertions, 8 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0ad19b22..516a4323 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -35,7 +35,7 @@ if (ECM_FOUND)
endif()
set(POPPLER_MAJOR_VERSION "21")
-set(POPPLER_MINOR_VERSION_STRING "04")
+set(POPPLER_MINOR_VERSION_STRING "05")
# 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}")
@@ -572,7 +572,7 @@ else()
add_library(poppler ${poppler_SRCS})
endif()
generate_export_header(poppler BASE_NAME poppler-private EXPORT_FILE_NAME "${CMAKE_CURRENT_BINARY_DIR}/poppler_private_export.h")
-set_target_properties(poppler PROPERTIES VERSION 109.0.0 SOVERSION 109)
+set_target_properties(poppler PROPERTIES VERSION 110.0.0 SOVERSION 110)
if(MINGW AND BUILD_SHARED_LIBS)
get_target_property(POPPLER_SOVERSION poppler SOVERSION)
set_target_properties(poppler PROPERTIES SUFFIX "-${POPPLER_SOVERSION}${CMAKE_SHARED_LIBRARY_SUFFIX}")
diff --git a/NEWS b/NEWS
index c37ca2ee..fd46d27d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,22 @@
+Release 21.05.0:
+ core:
+ * Fix crashes in malformed files
+ * Export SplashFont* symbols used by Scribus
+ * Minor code improvements
+
+ glib:
+ * Enhance find to support multi-line matching
+
+ qt5/qt6:
+ * Make sure new signatures are always properly oriented
+ * Allow to pass the border width when signing
+
+ utils:
+ * pdftoppm: Fix regression when using single scaleTo. Issue #1062
+
+ build system:
+ * Allow to disable building manual tests
+
Release 21.04.0:
core:
* Hide symbols by default
diff --git a/cpp/Doxyfile b/cpp/Doxyfile
index 2c999488..b16a1e4a 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.04.0
+PROJECT_NUMBER = 21.05.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/glib/CMakeLists.txt b/glib/CMakeLists.txt
index 953d7ecd..007b2b98 100644
--- a/glib/CMakeLists.txt
+++ b/glib/CMakeLists.txt
@@ -87,7 +87,7 @@ set(poppler_glib_generated_SRCS
)
add_library(poppler-glib ${poppler_glib_SRCS} ${poppler_glib_generated_SRCS})
generate_export_header(poppler-glib EXPORT_MACRO_NAME POPPLER_PUBLIC EXPORT_FILE_NAME "${CMAKE_CURRENT_BINARY_DIR}/poppler-macros.h")
-set_target_properties(poppler-glib PROPERTIES VERSION 8.20.0 SOVERSION 8)
+set_target_properties(poppler-glib PROPERTIES VERSION 8.21.0 SOVERSION 8)
if(MINGW AND BUILD_SHARED_LIBS)
get_target_property(POPPLER_GLIB_SOVERSION poppler-glib SOVERSION)
set_target_properties(poppler-glib PROPERTIES SUFFIX "-${POPPLER_GLIB_SOVERSION}${CMAKE_SHARED_LIBRARY_SUFFIX}")
diff --git a/qt5/src/CMakeLists.txt b/qt5/src/CMakeLists.txt
index 1212bb84..564cf270 100644
--- a/qt5/src/CMakeLists.txt
+++ b/qt5/src/CMakeLists.txt
@@ -38,7 +38,7 @@ set(poppler_qt5_SRCS
)
add_library(poppler-qt5 ${poppler_qt5_SRCS})
generate_export_header(poppler-qt5 BASE_NAME poppler-qt5 EXPORT_FILE_NAME "${CMAKE_CURRENT_BINARY_DIR}/poppler-export.h")
-set_target_properties(poppler-qt5 PROPERTIES VERSION 1.27.0 SOVERSION 1)
+set_target_properties(poppler-qt5 PROPERTIES VERSION 1.28.0 SOVERSION 1)
if(MINGW AND BUILD_SHARED_LIBS)
get_target_property(POPPLER_QT5_SOVERSION poppler-qt5 SOVERSION)
set_target_properties(poppler-qt5 PROPERTIES SUFFIX "-${POPPLER_QT5_SOVERSION}${CMAKE_SHARED_LIBRARY_SUFFIX}")
diff --git a/qt5/src/Doxyfile b/qt5/src/Doxyfile
index 68175125..c41b27e7 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.04.0
+PROJECT_NUMBER = 21.05.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/CMakeLists.txt b/qt6/src/CMakeLists.txt
index 7fecbc23..9fbc234f 100644
--- a/qt6/src/CMakeLists.txt
+++ b/qt6/src/CMakeLists.txt
@@ -38,7 +38,7 @@ set(poppler_qt6_SRCS
)
add_library(poppler-qt6 ${poppler_qt6_SRCS})
generate_export_header(poppler-qt6 BASE_NAME poppler-qt6 EXPORT_FILE_NAME "${CMAKE_CURRENT_BINARY_DIR}/poppler-export.h")
-set_target_properties(poppler-qt6 PROPERTIES VERSION 1.1.0 SOVERSION 1)
+set_target_properties(poppler-qt6 PROPERTIES VERSION 1.2.0 SOVERSION 1)
if(MINGW AND BUILD_SHARED_LIBS)
get_target_property(POPPLER_QT6_SOVERSION poppler-qt6 SOVERSION)
set_target_properties(poppler-qt6 PROPERTIES SUFFIX "-${POPPLER_QT6_SOVERSION}${CMAKE_SHARED_LIBRARY_SUFFIX}")
diff --git a/qt6/src/Doxyfile b/qt6/src/Doxyfile
index 5aecc10f..12d80d57 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.04.0
+PROJECT_NUMBER = 21.05.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.