poppler 0.12.2
diff --git a/CMakeLists.txt b/CMakeLists.txt index 5e6e7bc..ba0b07c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -13,7 +13,7 @@ set(POPPLER_MAJOR_VERSION "0") set(POPPLER_MINOR_VERSION "12") -set(POPPLER_MICRO_VERSION "1") +set(POPPLER_MICRO_VERSION "2") set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}") # command line switches
diff --git a/NEWS b/NEWS index ea2a742..34f5b20 100644 --- a/NEWS +++ b/NEWS
@@ -1,3 +1,21 @@ +Release 0.12.2 + + core: + * Fix a memory leak when converting to PostScript + * Fix crash when reading a font fails. Bug #24525 + * Make the ICC cache per page instead of global. Bug #24686 + * Do not accept negative interval lengths in the page labels tree. Bug #24721 + * Do not crash on files Aspect of Movie objects are reals instead of integers. Bug #24733 + * Do not render patterns when using CairoImageOutputDev + * Allow Transitions dictionary to be a Ref + * Do not crash if jpeg_start_decompress fails. KDE bug #214317 + + glib: + * Fix CVE-2009-3607 + + qt4: + * Use '.' in the annotations XML instead of the decimal separator of the current locale + Release 0.12.1 core:
diff --git a/configure.ac b/configure.ac index 6593cfd..8657d70 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],[1]) +m4_define([poppler_version_micro],[2]) 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 c926979..e5462b8 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.1" +#define PACKAGE_STRING "poppler 0.12.2" /* 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.1" +#define PACKAGE_VERSION "0.12.2" /* 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.1" +#define VERSION "0.12.2" #define snprintf _snprintf #define unlink _unlink
diff --git a/qt4/src/Doxyfile b/qt4/src/Doxyfile index 096c16d..73105a9 100644 --- a/qt4/src/Doxyfile +++ b/qt4/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.12.1 +PROJECT_NUMBER = 0.12.2 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put.