CMakeLists.txt | 4 ++-- NEWS | 16 ++++++++++++++++ configure.ac | 2 +- cpp/Doxyfile | 2 +- poppler/Makefile.am | 2 +- poppler/SecurityHandler.cc | 2 +- poppler/SplashOutputDev.cc | 2 +- qt4/src/Doxyfile | 2 +- qt5/src/Doxyfile | 2 +- 9 files changed, 25 insertions(+), 9 deletions(-)
New commits: commit d7cc90a8b60d7e353db6e0acdd0b789485e32972 Author: Albert Astals Cid <[email protected]> Date: Sat Mar 7 15:04:52 2015 +0100 0.32.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 2c67b0b..301760c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ if (ECM_FOUND) endif() set(POPPLER_MAJOR_VERSION "0") -set(POPPLER_MINOR_VERSION "31") +set(POPPLER_MINOR_VERSION "32") set(POPPLER_MICRO_VERSION "0") set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}") @@ -474,7 +474,7 @@ add_library(poppler STATIC ${poppler_SRCS}) else(MSVC) add_library(poppler SHARED ${poppler_SRCS}) endif(MSVC) -set_target_properties(poppler PROPERTIES VERSION 50.0.0 SOVERSION 50) +set_target_properties(poppler PROPERTIES VERSION 51.0.0 SOVERSION 51) target_link_libraries(poppler ${poppler_LIBS}) target_link_libraries(poppler LINK_INTERFACE_LIBRARIES "") install(TARGETS poppler RUNTIME DESTINATION bin LIBRARY DESTINATION lib${LIB_SUFFIX} ARCHIVE DESTINATION lib${LIB_SUFFIX}) diff --git a/NEWS b/NEWS index 01f4a66..e831124 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,19 @@ +Release 0.32.0 + core: + * Annotations: Fix rendering of empty BG/BC arrays + * Splash: Fix wrong colour shown when GouraudTriangleShFill uses a DeviceN colorspace. Bug #89182 + * Splash: Fix use of uninitialized variable in Splash::pipeRun + * Remove unnecesary check for font validity. Bug #88939 + * Small optimization in GooString::appendfv(). Bug #89096 + * Fix crashes in malformed files + + utils: + * pdftops: Make colorpsace optimization an option instead of default + * pdfseparate: use always an unique instance for PDFDoc for savePageAs + + build system: + * cmake: If extra-cmake-modules is around include the Sanitizers module + Release 0.31.0 core: * CairoOutputDev: support embedding JBIG2 image data diff --git a/configure.ac b/configure.ac index 3f43c0e..56a972e 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ m4_define([poppler_version_major],[0]) -m4_define([poppler_version_minor],[31]) +m4_define([poppler_version_minor],[32]) 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 842b667..fc44cee 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.31.0 +PROJECT_NUMBER = 0.32.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 9a623af..43faa7e 100644 --- a/poppler/Makefile.am +++ b/poppler/Makefile.am @@ -296,7 +296,7 @@ libpoppler_la_LIBADD = \ $(win32_libs) libpoppler_la_LDFLAGS = \ - -version-info 50:0:0 \ + -version-info 51:0:0 \ @create_shared_lib@ \ @auto_import_flags@ diff --git a/qt4/src/Doxyfile b/qt4/src/Doxyfile index eee8a78..25bdcab 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.31.0 +PROJECT_NUMBER = 0.32.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 43253df..364d2f7 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.31.0 +PROJECT_NUMBER = 0.32.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. commit c13297d154ded11721fe7d3abdba459ca628cef8 Author: Albert Astals Cid <[email protected]> Date: Sat Mar 7 14:58:10 2015 +0100 Update (C) diff --git a/poppler/SecurityHandler.cc b/poppler/SecurityHandler.cc index 44bd8b8..63d8b4e 100644 --- a/poppler/SecurityHandler.cc +++ b/poppler/SecurityHandler.cc @@ -13,7 +13,7 @@ // All changes made under the Poppler project to this file are licensed // under GPL version 2 or later // -// Copyright (C) 2010, 2012 Albert Astals Cid <[email protected]> +// Copyright (C) 2010, 2012, 2015 Albert Astals Cid <[email protected]> // Copyright (C) 2013 Adrian Johnson <[email protected]> // Copyright (C) 2014 Fabio D'Urso <[email protected]> // diff --git a/poppler/SplashOutputDev.cc b/poppler/SplashOutputDev.cc index 2e2ec33..455c2be 100644 --- a/poppler/SplashOutputDev.cc +++ b/poppler/SplashOutputDev.cc @@ -20,7 +20,7 @@ // Copyright (C) 2006 Scott Turner <[email protected]> // Copyright (C) 2007 Koji Otani <[email protected]> // Copyright (C) 2009 Petr Gajdos <[email protected]> -// Copyright (C) 2009-2014 Thomas Freitag <[email protected]> +// Copyright (C) 2009-2015 Thomas Freitag <[email protected]> // Copyright (C) 2009 Carlos Garcia Campos <[email protected]> // Copyright (C) 2009, 2014, 2015 William Bader <[email protected]> // Copyright (C) 2010 Patrick Spendrin <[email protected]> _______________________________________________ poppler mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/poppler
