CMakeLists.txt | 2 +- NEWS | 16 ++++++++++++++++ configure.ac | 2 +- msvc/config.h | 6 +++--- qt4/src/Doxyfile | 2 +- 5 files changed, 22 insertions(+), 6 deletions(-)
New commits: commit 941ec1ca4f7110765f4c48409c0e6c3f6625cf5c Author: Albert Astals Cid <[email protected]> Date: Thu Dec 24 12:20:25 2009 +0100 0.12.3 diff --git a/CMakeLists.txt b/CMakeLists.txt index 5d5be7b..0b45fce 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,7 @@ include(MacroBoolTo01) set(POPPLER_MAJOR_VERSION "0") set(POPPLER_MINOR_VERSION "12") -set(POPPLER_MICRO_VERSION "2") +set(POPPLER_MICRO_VERSION "3") set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}") # command line switches diff --git a/NEWS b/NEWS index 34f5b20..83c2ddb 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,19 @@ +Release 0.12.3 + + core: + * Be more lenient with /Decode key on images. Bug #17439 + * Correctly initialize fileName in LinkGoToR. Bug #25221 + * Improve the reconstruction of the XRef for broken files + * [Cairo backend] Do not crash on malformed files. Bug #24575 + * Accept Fontname if FontName is not present. KDE bug #217013 + * Make PSOutputDev code a bit more resilient + * Fix writing of null objects. Bug #25465 + * [Cairo backend] Fix crash in some documents. GNOME bug #603934 + * Correctly initialize profileCommands in Gfx constructor + + build system: + * Check for openjpeg in the C++ part as it uses bool in the header. Bug #25103 + Release 0.12.2 core: diff --git a/configure.ac b/configure.ac index f7355b8..293f128 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ m4_define([poppler_version_major],[0]) m4_define([poppler_version_minor],[12]) -m4_define([poppler_version_micro],[2]) +m4_define([poppler_version_micro],[3]) m4_define([poppler_version],[poppler_version_major.poppler_version_minor.poppler_version_micro]) AC_PREREQ(2.59) diff --git a/msvc/config.h b/msvc/config.h index e5462b8..89743b2 100644 --- a/msvc/config.h +++ b/msvc/config.h @@ -32,13 +32,13 @@ #define PACKAGE_NAME "poppler" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "poppler 0.12.2" +#define PACKAGE_STRING "poppler 0.12.3" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "poppler" /* Define to the version of this package. */ -#define PACKAGE_VERSION "0.12.2" +#define PACKAGE_VERSION "0.12.3" /* Poppler data dir */ #define POPPLER_DATADIR "/usr/local/share/poppler" @@ -53,7 +53,7 @@ /* #undef USE_EXCEPTIONS */ /* Version number of package */ -#define VERSION "0.12.2" +#define VERSION "0.12.3" #define snprintf _snprintf #define unlink _unlink diff --git a/qt4/src/Doxyfile b/qt4/src/Doxyfile index 73105a9..afe4165 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.12.2 +PROJECT_NUMBER = 0.12.3 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. _______________________________________________ poppler mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/poppler
