Poppler 0.72.0
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 88a53c4..fa86ea2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -36,7 +36,7 @@
 endif()
 
 set(POPPLER_MAJOR_VERSION "0")
-set(POPPLER_MINOR_VERSION "71")
+set(POPPLER_MINOR_VERSION "72")
 set(POPPLER_MICRO_VERSION "0")
 set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}")
 
@@ -484,7 +484,7 @@
 else()
 add_library(poppler ${poppler_SRCS})
 endif()
-set_target_properties(poppler PROPERTIES VERSION 82.0.0 SOVERSION 82)
+set_target_properties(poppler PROPERTIES VERSION 83.0.0 SOVERSION 83)
 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 dac411a..4029905 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,30 @@
+Release 0.72.0:
+        core:
+         * Fix checkbox lacking AP not bein able to change state. Issue #655
+         * Draw line annotation endings (arrow, circle, ...)
+         * cairo: Don't use UNIQUE_ID for PS output, to avoid using PS memory on cairo >= 1.5.10
+         * Be more stubborn looking for a nssdb. Issue #669
+         * GooString::fromInt: Repair the return value.
+         * Minor performance improvements
+         * Avoid cycles in PDF parsing
+         * Stream::makeFilter: Fix memory leak
+         * Fix various issues with malformed files
+         * Rename GooString::getCString to GooString::c_str
+         * Regenerate UnicodeDecompTables.h from python 3.7.1
+
+        utils:
+         * pdfdetach: Check for valid embedded file before trying to save it. Issue #661
+         * pdfdetach: Check for valid file name of embedded file before using it to determine save path. Issue #660
+         * Fix typos in utils.
+
+        glib:
+         * Fix missing PopplerAttachment destructor call
+         * Support getting form widget additional actions.
+         * docs: Small improvements
+
+        qt5:
+         * Internally compile with -DQT_NO_SIGNALS_SLOTS_KEYWORDS
+
 Release 0.71.0:
         core:
          * Replace the implementation of GooString by std::string but keep the exact interface intact.
diff --git a/cpp/Doxyfile b/cpp/Doxyfile
index ac16cf3..bdf8e16 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.71.0
+PROJECT_NUMBER         = 0.72.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 beae865..ecdd38c 100644
--- a/glib/CMakeLists.txt
+++ b/glib/CMakeLists.txt
@@ -86,7 +86,7 @@
   ${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.10.0 SOVERSION 8)
+set_target_properties(poppler-glib PROPERTIES VERSION 8.11.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)