CMakeLists.txt | 6 +++--- NEWS | 24 ++++++++++++++++++++++++ configure.ac | 4 ++-- cpp/Doxyfile | 2 +- glib/Makefile.am | 2 +- poppler/Makefile.am | 2 +- qt/CMakeLists.txt | 2 +- qt/Makefile.am | 2 +- qt4/src/Doxyfile | 2 +- 9 files changed, 35 insertions(+), 11 deletions(-)
New commits: commit ff58ee66c27da09a370a3000ab55eb1a24921852 Author: Albert Astals Cid <[email protected]> Date: Mon Dec 27 20:07:21 2010 +0000 bump soname just in case the getPage change is not BC diff --git a/qt/CMakeLists.txt b/qt/CMakeLists.txt index 7f4d233..5e83e40 100644 --- a/qt/CMakeLists.txt +++ b/qt/CMakeLists.txt @@ -14,7 +14,7 @@ set(poppler_qt_SRCS poppler-private.cc ) add_library(poppler-qt SHARED ${poppler_qt_SRCS}) -set_target_properties(poppler-qt PROPERTIES VERSION 2.0.0 SOVERSION 2) +set_target_properties(poppler-qt PROPERTIES VERSION 3.0.0 SOVERSION 3) target_link_libraries(poppler-qt poppler ${QT3_LIBRARIES}) install(TARGETS poppler-qt RUNTIME DESTINATION bin LIBRARY DESTINATION lib${LIB_SUFFIX} ARCHIVE DESTINATION lib${LIB_SUFFIX}) diff --git a/qt/Makefile.am b/qt/Makefile.am index 722d796..75c0b48 100644 --- a/qt/Makefile.am +++ b/qt/Makefile.am @@ -30,7 +30,7 @@ libpoppler_qt_la_LIBADD = \ $(FREETYPE_LIBS) \ $(FONTCONFIG_LIBS) -libpoppler_qt_la_LDFLAGS = -version-info 2:0:0 @create_shared_lib@ +libpoppler_qt_la_LDFLAGS = -version-info 3:0:0 @create_shared_lib@ if BUILD_SPLASH_OUTPUT commit 453df02e195a96d0210f297c21c8ffba646659da Author: Albert Astals Cid <[email protected]> Date: Mon Dec 27 19:51:13 2010 +0000 Make distcheck work diff --git a/glib/Makefile.am b/glib/Makefile.am index 4e377da..76818ca 100644 --- a/glib/Makefile.am +++ b/glib/Makefile.am @@ -110,7 +110,7 @@ INTROSPECTION_COMPILER_ARGS = --includedir=$(srcdir) introspection_files = $(libpoppler_glib_la_SOURCES) $(poppler_glib_include_HEADERS) Poppler-0.16.gir: libpoppler-glib.la Poppler_0_16_gir_INCLUDES = GObject-2.0 cairo-1.0 -Poppler_0_16_gir_CFLAGS = $(INCLUDES) +Poppler_0_16_gir_CFLAGS = $(INCLUDES) -I$(top_builddir) Poppler_0_16_gir_LIBS = libpoppler-glib.la Poppler_0_16_gir_FILES = $(addprefix $(srcdir)/, $(introspection_files)) commit 6a34cec72c1a1b6576858a7836aae4a902fb5ed7 Author: Albert Astals Cid <[email protected]> Date: Mon Dec 27 19:29:52 2010 +0000 increase core soname diff --git a/CMakeLists.txt b/CMakeLists.txt index 221b818..b904690 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -367,7 +367,7 @@ add_library(poppler STATIC ${poppler_SRCS}) else(MSVC) add_library(poppler SHARED ${poppler_SRCS}) endif(MSVC) -set_target_properties(poppler PROPERTIES VERSION 11.0.0 SOVERSION 11) +set_target_properties(poppler PROPERTIES VERSION 12.0.0 SOVERSION 12) 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/poppler/Makefile.am b/poppler/Makefile.am index ceaca86..2e9ee68 100644 --- a/poppler/Makefile.am +++ b/poppler/Makefile.am @@ -176,7 +176,7 @@ libpoppler_la_LIBADD = \ $(PTHREAD_LIBS) \ $(win32_libs) -libpoppler_la_LDFLAGS = -version-info 11:0:0 @create_shared_lib@ @auto_import_flags@ +libpoppler_la_LDFLAGS = -version-info 12:0:0 @create_shared_lib@ @auto_import_flags@ if ENABLE_XPDF_HEADERS commit 8c11e9d68dceb609d04b3b383d22c307b5981d86 Author: Albert Astals Cid <[email protected]> Date: Mon Dec 27 19:23:29 2010 +0000 0.16.0 project version increase diff --git a/CMakeLists.txt b/CMakeLists.txt index 4649554..221b818 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,8 +15,8 @@ include(TestBigEndian) test_big_endian(WORDS_BIGENDIAN) set(POPPLER_MAJOR_VERSION "0") -set(POPPLER_MINOR_VERSION "15") -set(POPPLER_MICRO_VERSION "3") +set(POPPLER_MINOR_VERSION "16") +set(POPPLER_MICRO_VERSION "0") set(POPPLER_VERSION "${POPPLER_MAJOR_VERSION}.${POPPLER_MINOR_VERSION}.${POPPLER_MICRO_VERSION}") # command line switches diff --git a/configure.ac b/configure.ac index 088aac5..831452b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ m4_define([poppler_version_major],[0]) -m4_define([poppler_version_minor],[15]) -m4_define([poppler_version_micro],[3]) +m4_define([poppler_version_minor],[16]) +m4_define([poppler_version_micro],[0]) m4_define([poppler_version],[poppler_version_major.poppler_version_minor.poppler_version_micro]) AC_PREREQ(2.59) diff --git a/cpp/Doxyfile b/cpp/Doxyfile index e52a9f4..f6f70d0 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.15.3 +PROJECT_NUMBER = 0.16.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/qt4/src/Doxyfile b/qt4/src/Doxyfile index 4447880..b1dc4d5 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.15.3 +PROJECT_NUMBER = 0.16.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. commit 8c1fd83c6061279af00c1172fe41cee61f19d917 Author: Albert Astals Cid <[email protected]> Date: Mon Dec 27 19:22:22 2010 +0000 0.16.0 NEWS diff --git a/NEWS b/NEWS index fa04e5c..9d44318 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,27 @@ +Release 0.16.0 + + core: + * Improve the correctness of radial shadings (Bug #32349) + * Adapt the zlib-based FlateStream code to API changes (Bug #32065) + * Make PreScanOutputDev be less agressive when deciding to rasterize (Bug #30107) + * Fix some warnings in newer gcc in Splash backend + * Fix the preliminary bbox/clip calculation in Splash backend + * Use A1 instead of A8 for imagemask in the Cairo backend + * Windows compile fixes + + utils: + * Do not return 99 (or 1) with -h, -v and -printenc (Bug #32149) + * Misc style improvements to pdftohtml code + * pdftohtml: Remove the -resolution flag introduced in 0.15.0 and fix the + existing -zoom flag + + build system: + * Add more warning flags to the default gcc builds + * Enable GObject introspection support in the cmake build system + + qt4: + * Windows compile fixes + Release 0.15.3 (0.16 RC) core: _______________________________________________ poppler mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/poppler
