mirror of
https://github.com/qpdf/qpdf.git
synced 2025-01-02 22:50:20 +00:00
Prepare 5.1.0 release
This commit is contained in:
parent
6067608d93
commit
0b6127558d
@ -1,3 +1,7 @@
|
||||
2013-12-17 Jay Berkenbilt <ejb@ql.org>
|
||||
|
||||
* 5.1.0: release
|
||||
|
||||
2013-12-16 Jay Berkenbilt <ejb@ql.org>
|
||||
|
||||
* Document and make explicit that passing null to
|
||||
|
@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
|
||||
dnl This config.in requires autoconf 2.5 or greater.
|
||||
|
||||
AC_PREREQ([2.68])
|
||||
AC_INIT([qpdf],[5.0.1])
|
||||
AC_INIT([qpdf],[5.1.0])
|
||||
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
AC_CONFIG_FILES([autoconf.mk])
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include <qpdf/QPDF_Null.hh>
|
||||
#include <qpdf/QPDF_Dictionary.hh>
|
||||
|
||||
std::string QPDF::qpdf_version = "5.0.1";
|
||||
std::string QPDF::qpdf_version = "5.1.0";
|
||||
|
||||
static char const* EMPTY_PDF =
|
||||
"%PDF-1.3\n"
|
||||
|
@ -96,4 +96,4 @@ $(COBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.$(LOBJ): libqpdf/%.c
|
||||
# * Otherwise, increment REVISION
|
||||
|
||||
$(TARGETS_libqpdf): $(OBJS_libqpdf)
|
||||
$(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),13,1,0)
|
||||
$(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),14,0,1)
|
||||
|
@ -5,8 +5,8 @@
|
||||
<!ENTITY mdash "—">
|
||||
<!ENTITY ndash "–">
|
||||
<!ENTITY nbsp " ">
|
||||
<!ENTITY swversion "5.0.1">
|
||||
<!ENTITY lastreleased "October 18, 2013">
|
||||
<!ENTITY swversion "5.1.0">
|
||||
<!ENTITY lastreleased "December 17, 2013">
|
||||
]>
|
||||
<book>
|
||||
<bookinfo>
|
||||
@ -2665,6 +2665,43 @@ print "\n";
|
||||
<filename>ChangeLog</filename> in the source distribution.
|
||||
</para>
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>5.1.0: December 17, 2013</term>
|
||||
<listitem>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para>
|
||||
Added runtime option
|
||||
(<function>QUtil::setRandomDataProvider</function>) to supply
|
||||
your own random data provider. You can use this if you want
|
||||
to avoid using the OS-provided secure random number generation
|
||||
facility or stdlib's less secure version. See comments in
|
||||
include/qpdf/QUtil.hh for details.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Fixed image comparison tests to not create 12-bit-per-pixel
|
||||
images since some versions of tiffcmp have bugs in comparing
|
||||
them in some cases. This increases the disk space required by
|
||||
the image comparison tests, which are off by default anyway.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Introduce a number of small fixes for compilation on the
|
||||
latest clang in MacOS and the latest Visual C++ in Windows.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
Be able to handle broken files that end the xref table header
|
||||
with a space instead of a newline.
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>5.0.1: October 18, 2013</term>
|
||||
<listitem>
|
||||
|
Loading…
Reference in New Issue
Block a user