0.74.0
diff --git a/CMakeLists.txt b/CMakeLists.txt
index cc141d3..6d49721 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -36,7 +36,7 @@
 endif()
 
 set(POPPLER_MAJOR_VERSION "0")
-set(POPPLER_MINOR_VERSION "73")
+set(POPPLER_MINOR_VERSION "74")
 set(POPPLER_MICRO_VERSION "0")
 set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
 
@@ -489,7 +489,7 @@
 else()
 add_library(poppler ${poppler_SRCS})
 endif()
-set_target_properties(poppler PROPERTIES VERSION 84.0.0 SOVERSION 84)
+set_target_properties(poppler PROPERTIES VERSION 85.0.0 SOVERSION 85)
 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 8d3aa28..5f128a6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,29 @@
+Release 0.74.0:
+        core:
+         * Remove support for obsolete systems. Issue #709
+         * Include timezone in timeToDateString()
+         * Fix/silence some warnings
+         * Fix issues with broken files
+
+        build system:
+         * Fix linking in FreeBSD
+         * Fix fseeko configure check on Android for API level < 24
+         * Remove unused MacroPushRequiredVars.cmake
+
+        qt5:
+         * Add API that lazily builds an outline by wrapping the internal objects
+         * Demo: Use new API to build Table Of Contents lazily
+
+        glib:
+         * Improve documentation
+         * Fix cast from 'GTime *' (aka 'int *') to 'time_t *' (aka 'long *')
+
+        utils:
+         * pdfsig: add -nssdir option
+
+        cpp:
+         * Add a way to get all the named destinations in a document.
+
 Release 0.73.0:
         core:
          * Fix regression reading some encrypted files. Issue #690
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt
index e8e8e9c..4d8bc7b 100644
--- a/cpp/CMakeLists.txt
+++ b/cpp/CMakeLists.txt
@@ -25,7 +25,7 @@
 )
 
 add_library(poppler-cpp ${poppler_cpp_SRCS})
-set_target_properties(poppler-cpp PROPERTIES VERSION 0.6.0 SOVERSION 0)
+set_target_properties(poppler-cpp PROPERTIES VERSION 0.7.0 SOVERSION 0)
 if(MINGW AND BUILD_SHARED_LIBS)
     get_target_property(POPPLER_CPP_SOVERSION poppler-cpp SOVERSION)
     set_target_properties(poppler-cpp PROPERTIES SUFFIX "-${POPPLER_CPP_SOVERSION}${CMAKE_SHARED_LIBRARY_SUFFIX}")
diff --git a/cpp/Doxyfile b/cpp/Doxyfile
index 4056f3c..0b36e36 100644
--- a/cpp/Doxyfile
+++ b/cpp/Doxyfile
@@ -31,7 +31,7 @@
 # This could be handy for archiving the generated documentation or
 # if some version control system is used.
 
-PROJECT_NUMBER         = 0.73.0
+PROJECT_NUMBER         = 0.74.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 9728212..340a3e4 100644
--- a/qt5/src/CMakeLists.txt
+++ b/qt5/src/CMakeLists.txt
@@ -39,7 +39,7 @@
   poppler-version.cpp
 )
 add_library(poppler-qt5 ${poppler_qt5_SRCS})
-set_target_properties(poppler-qt5 PROPERTIES VERSION 1.18.0 SOVERSION 1)
+set_target_properties(poppler-qt5 PROPERTIES VERSION 1.19.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 2805d5c..f34d7bc 100644
--- a/qt5/src/Doxyfile
+++ b/qt5/src/Doxyfile
@@ -31,7 +31,7 @@
 # This could be handy for archiving the generated documentation or
 # if some version control system is used.
 
-PROJECT_NUMBER         = 0.73.0
+PROJECT_NUMBER         = 0.74.0
 
 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
 # base path where the generated documentation will be put.