summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2017-12-03 20:25:06 +0100
committerAlbert Astals Cid <aacid@kde.org>2017-12-03 20:25:06 +0100
commit72e0a3a087f160d819f7697a8536bbee12240c7a (patch)
tree5ac6bdd396ea33a00ca2482414b5425e11d7504e
parent90958363fd5e8c5e74a889e0c2140c71a0c09eb6 (diff)
-rw-r--r--CMakeLists.txt6
-rw-r--r--NEWS26
-rw-r--r--cpp/Doxyfile2
-rw-r--r--qt5/src/CMakeLists.txt2
-rw-r--r--qt5/src/Doxyfile2
5 files changed, 32 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2ed1398a..d8072a93 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -30,8 +30,8 @@ if (ECM_FOUND)
endif()
set(POPPLER_MAJOR_VERSION "0")
-set(POPPLER_MINOR_VERSION "61")
-set(POPPLER_MICRO_VERSION "1")
+set(POPPLER_MINOR_VERSION "62")
+set(POPPLER_MICRO_VERSION "0")
set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
set (CMAKE_CXX_STANDARD 11)
@@ -482,7 +482,7 @@ add_library(poppler STATIC ${poppler_SRCS})
else()
add_library(poppler ${poppler_SRCS})
endif()
-set_target_properties(poppler PROPERTIES VERSION 72.0.0 SOVERSION 72)
+set_target_properties(poppler PROPERTIES VERSION 73.0.0 SOVERSION 73)
if(MINGW)
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 733e470c..283dfc42 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,29 @@
+Release 0.62.0
+ core:
+ * Stop supporting lcms1, you really want to use lcms2 :)
+ * Stop supporting openjpeg1, you really want to use openjpeg2 :)
+ * Open files that state 8 bits as third field of W. Bug #103469
+ * GfxLabColorSpace::parse: Fix crash in broken documents. Bug #103582
+ * Fix leak if parseDA fails
+ * Include glibc.h where needed
+ * Document the meaning of the 'type' integer of a shading
+ * Fix UTF test fail
+ * INSTALL: add debug options
+
+ qt5:
+ * Add API to let the rendering process callback to get a partial rendering. Bug #103372
+
+ qt4:
+ * Remove the Qt4 frontend
+
+ utils:
+ * Support unicode on windows console
+ * pdfsig: install man page
+ * sort encoding list
+
+ glib:
+ * demo: fix warning
+
Release 0.61.1
core:
* CairoOutputDev: don't overflow y * stride when accessing image data
diff --git a/cpp/Doxyfile b/cpp/Doxyfile
index 2c8adb03..584d9cbc 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.61.1
+PROJECT_NUMBER = 0.62.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 7993c33b..b54b0251 100644
--- a/qt5/src/CMakeLists.txt
+++ b/qt5/src/CMakeLists.txt
@@ -30,7 +30,7 @@ set(poppler_qt5_SRCS
ArthurOutputDev.cc
)
add_library(poppler-qt5 SHARED ${poppler_qt5_SRCS})
-set_target_properties(poppler-qt5 PROPERTIES VERSION 1.11.0 SOVERSION 1)
+set_target_properties(poppler-qt5 PROPERTIES VERSION 1.12.0 SOVERSION 1)
if(MINGW)
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 3055468f..a58b6b20 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.61.1
+PROJECT_NUMBER = 0.62.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.