summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2020-03-28 15:41:37 +0100
committerAlbert Astals Cid <aacid@kde.org>2020-03-28 15:41:37 +0100
commit0e938b2f82fbb1cf129ee40c84a3081a10c39d0a (patch)
treeff240d8406cecb5be1e0c8017641dde2108bf4ae
parentf19d6723313c0db1b63b8a04c0d2475422b875fb (diff)
-rw-r--r--CMakeLists.txt6
-rw-r--r--NEWS15
-rw-r--r--cpp/Doxyfile2
-rw-r--r--qt5/src/CMakeLists.txt2
-rw-r--r--qt5/src/Doxyfile2
5 files changed, 21 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e359288b..28d46c4d 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -36,8 +36,8 @@ if (ECM_FOUND)
endif()
set(POPPLER_MAJOR_VERSION "0")
-set(POPPLER_MINOR_VERSION "86")
-set(POPPLER_MICRO_VERSION "1")
+set(POPPLER_MINOR_VERSION "87")
+set(POPPLER_MICRO_VERSION "0")
set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
set (CMAKE_CXX_STANDARD 14)
@@ -533,7 +533,7 @@ add_library(poppler STATIC ${poppler_SRCS})
else()
add_library(poppler ${poppler_SRCS})
endif()
-set_target_properties(poppler PROPERTIES VERSION 97.0.0 SOVERSION 97)
+set_target_properties(poppler PROPERTIES VERSION 98.0.0 SOVERSION 98)
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 4482dfb8..ddca29f6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,18 @@
+Release 0.87.0:
+ core:
+ * Fix leak in broken files
+ * Internal code improvements
+
+ qt5:
+ * Add option to get form choice for export value
+ * ArthurOutputDev: Avoid division by zero in updateLineDash. Issue #695
+
+ glib:
+ * Internal code improvements
+
+ utils:
+ * pdftohtml: Fix memory leak in HtmlOutputDev::getLinkDest
+
Release 0.86.1:
core:
* Fix regression in Browse Link handling
diff --git a/cpp/Doxyfile b/cpp/Doxyfile
index 13e1b1eb..32a687fe 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 = 0.86.1
+PROJECT_NUMBER = 0.87.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/CMakeLists.txt b/qt5/src/CMakeLists.txt
index f7c99248..69715d53 100644
--- a/qt5/src/CMakeLists.txt
+++ b/qt5/src/CMakeLists.txt
@@ -40,7 +40,7 @@ set(poppler_qt5_SRCS
poppler-version.cpp
)
add_library(poppler-qt5 ${poppler_qt5_SRCS})
-set_target_properties(poppler-qt5 PROPERTIES VERSION 1.22.0 SOVERSION 1)
+set_target_properties(poppler-qt5 PROPERTIES VERSION 1.23.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 eca401af..79edc371 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 = 0.86.1
+PROJECT_NUMBER = 0.87.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.