summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2020-07-02 22:32:15 +0200
committerAlbert Astals Cid <aacid@kde.org>2020-07-02 22:32:53 +0200
commitdb75242047c75336abe72b1a32fd907c0d319f71 (patch)
tree3bbd242ad81a2506d215239107f9d892671e664c
parent42457a711e2168e66d3b55bcf32d4760aa2106b3 (diff)
-rw-r--r--CMakeLists.txt4
-rw-r--r--NEWS26
-rw-r--r--cpp/Doxyfile2
-rw-r--r--glib/CMakeLists.txt2
-rw-r--r--qt5/src/CMakeLists.txt2
-rw-r--r--qt5/src/Doxyfile2
6 files changed, 32 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 3a44f7ac..533abb03 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -36,7 +36,7 @@ if (ECM_FOUND)
endif()
set(POPPLER_MAJOR_VERSION "0")
-set(POPPLER_MINOR_VERSION "89")
+set(POPPLER_MINOR_VERSION "90")
set(POPPLER_MICRO_VERSION "0")
set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
@@ -539,7 +539,7 @@ add_library(poppler STATIC ${poppler_SRCS})
else()
add_library(poppler ${poppler_SRCS})
endif()
-set_target_properties(poppler PROPERTIES VERSION 100.0.0 SOVERSION 100)
+set_target_properties(poppler PROPERTIES VERSION 101.0.0 SOVERSION 101)
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 5f428ba0..d53a3015 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,29 @@
+Release 0.90.0:
+ core:
+ * Color profile tweaks
+ * Small signature improvements
+ * BBoxOutputDev: Fix calculation when type3 fonts are involved
+ * Fix potential crash when reading Forms
+ * Fix infinite loop in broken file
+
+ glib:
+ * Fix adding annots in rotated pages
+ * Add ability to reset forms
+ * Several fixes to the documentation
+
+ qt5:
+ * Make it clear we require Qt 5.5
+ * demo: Fix crash on broken files
+ * Small documentation improvements
+
+ utils:
+ * pdftoppm: Add option to set display profile
+ * pdftops: Add a -rasterize option with values always, never, or whenneeded
+
+ build system:
+ * Require cmake 3.5
+ * More modern cmake way to link against curl
+
Release 0.89.0:
core:
* Add support for ResetForm action. Issue #225
diff --git a/cpp/Doxyfile b/cpp/Doxyfile
index 939f1fa4..34b504ff 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.89.0
+PROJECT_NUMBER = 0.90.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 a368eded..e92a9677 100644
--- a/glib/CMakeLists.txt
+++ b/glib/CMakeLists.txt
@@ -87,7 +87,7 @@ set(poppler_glib_generated_SRCS
${CMAKE_SOURCE_DIR}/poppler/CairoRescaleBox.cc
)
add_library(poppler-glib ${poppler_glib_SRCS} ${poppler_glib_generated_SRCS})
-set_target_properties(poppler-glib PROPERTIES VERSION 8.17.0 SOVERSION 8)
+set_target_properties(poppler-glib PROPERTIES VERSION 8.18.0 SOVERSION 8)
set_target_properties(poppler-glib PROPERTIES C_VISIBILITY_PRESET hidden)
set_target_properties(poppler-glib PROPERTIES CXX_VISIBILITY_PRESET hidden)
set_target_properties(poppler-glib PROPERTIES VISIBILITY_INLINES_HIDDEN 1)
diff --git a/qt5/src/CMakeLists.txt b/qt5/src/CMakeLists.txt
index bbcd612d..0247fa3f 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.24.0 SOVERSION 1)
+set_target_properties(poppler-qt5 PROPERTIES VERSION 1.25.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 b56c87d3..1106915e 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.89.0
+PROJECT_NUMBER = 0.90.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.