CMakeLists.txt | 4 ++-- NEWS | 15 +++++++++++++++ configure.ac | 2 +- cpp/Doxyfile | 2 +- poppler/Makefile.am | 2 +- qt4/src/Doxyfile | 2 +- qt5/src/Doxyfile | 2 +- utils/pdfinfo.cc | 2 +- 8 files changed, 23 insertions(+), 8 deletions(-)
New commits: commit 85bfedad416906b1a5dff377d470387692b5ca70 Author: Albert Astals Cid <[email protected]> Date: Sun Sep 3 22:54:32 2017 +0200 Poppler 0.59 diff --git a/CMakeLists.txt b/CMakeLists.txt index f52991cb..a5b0a5be 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ if (ECM_FOUND) endif() set(POPPLER_MAJOR_VERSION "0") -set(POPPLER_MINOR_VERSION "58") +set(POPPLER_MINOR_VERSION "59") set(POPPLER_MICRO_VERSION "0") set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}") @@ -537,7 +537,7 @@ add_library(poppler STATIC ${poppler_SRCS}) else() add_library(poppler SHARED ${poppler_SRCS}) endif() -set_target_properties(poppler PROPERTIES VERSION 69.0.0 SOVERSION 69) +set_target_properties(poppler PROPERTIES VERSION 70.0.0 SOVERSION 70) target_link_libraries(poppler LINK_PRIVATE ${poppler_LIBS}) install(TARGETS poppler RUNTIME DESTINATION bin LIBRARY DESTINATION lib${LIB_SUFFIX} ARCHIVE DESTINATION lib${LIB_SUFFIX}) diff --git a/NEWS b/NEWS index 68086a48..8541f30f 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,18 @@ +Release 0.59.0 + core: + * Fix infinite recursion in NameTree parsing in broken files + + utils: + * pdfunite: Fix API porting error that caused abort in some cases + * pdfinfo: Fix crashes and memory leaks when using -dests + * pdfinfo: use GooString.append instead of sprintf/strcat + * pdfimages: Fix warning when compiling with cygwin + + build system: + * Fix cygwin 32-bit compile + * cmake tweaks + + Release 0.58.0 core: * CairoOutputDev: cairo 1.14 now has high quality downscaling diff --git a/configure.ac b/configure.ac index e1b00fb7..e4054581 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ m4_define([poppler_version_major],[0]) -m4_define([poppler_version_minor],[58]) +m4_define([poppler_version_minor],[59]) m4_define([poppler_version_micro],[0]) m4_define([poppler_version],[poppler_version_major.poppler_version_minor.poppler_version_micro]) diff --git a/cpp/Doxyfile b/cpp/Doxyfile index a2db5ee0..fb91adf4 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.58.0 +PROJECT_NUMBER = 0.59.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/poppler/Makefile.am b/poppler/Makefile.am index db550fa1..8cf7af85 100644 --- a/poppler/Makefile.am +++ b/poppler/Makefile.am @@ -327,7 +327,7 @@ libpoppler_la_LIBADD = \ $(win32_libs) libpoppler_la_LDFLAGS = \ - -version-info 69:0:0 \ + -version-info 70:0:0 \ @create_shared_lib@ \ @auto_import_flags@ diff --git a/qt4/src/Doxyfile b/qt4/src/Doxyfile index 9b2fa472..67807372 100644 --- a/qt4/src/Doxyfile +++ b/qt4/src/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = "Poppler Qt4 " # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 0.58.0 +PROJECT_NUMBER = 0.59.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/Doxyfile b/qt5/src/Doxyfile index 278a6803..2032799e 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.58.0 +PROJECT_NUMBER = 0.59.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. commit 98b4c23cf6f6eb0dbc167ed0606932b0d8de39f1 Author: Albert Astals Cid <[email protected]> Date: Sun Sep 3 22:50:31 2017 +0200 Update (C) diff --git a/utils/pdfinfo.cc b/utils/pdfinfo.cc index 49da3c07..2daff7f9 100644 --- a/utils/pdfinfo.cc +++ b/utils/pdfinfo.cc @@ -18,7 +18,7 @@ // Copyright (C) 2007-2010, 2012, 2016, 2017 Albert Astals Cid <[email protected]> // Copyright (C) 2010 Hib Eris <[email protected]> // Copyright (C) 2011 Vittal Aithal <[email protected]> -// Copyright (C) 2012, 2013, 2016 Adrian Johnson <[email protected]> +// Copyright (C) 2012, 2013, 2016, 2017 Adrian Johnson <[email protected]> // Copyright (C) 2012 Fabio D'Urso <[email protected]> // Copyright (C) 2013 Adrian Perez de Castro <[email protected]> // Copyright (C) 2013 Suzuki Toshiya <[email protected]> _______________________________________________ poppler mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/poppler
