Prepare 8.0.1 release

This commit is contained in:
Jay Berkenbilt 2018-03-04 07:14:36 -05:00
parent 5c891cf4c4
commit 6fe1e9de40
4 changed files with 31 additions and 5 deletions

View File

@ -1,5 +1,7 @@
2018-03-04 Jay Berkenbilt <ejb@ql.org>
* 8.0.1: release
* On the command line when specifying page ranges, support
preceding a page number by "r" to indicate that it should be
counted from the end. For example, the range r3-r1 would indicate

View File

@ -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],[8.0.0])
AC_INIT([qpdf],[8.0.1])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_FILES([autoconf.mk])
@ -31,7 +31,7 @@ LT_INIT([win32-dll])
# LT = libtool
LT_CURRENT=21
LT_AGE=0
LT_REVISION=0
LT_REVISION=1
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
AC_SUBST(LT_AGE)

View File

@ -19,7 +19,7 @@
#include <qpdf/QPDF_Null.hh>
#include <qpdf/QPDF_Dictionary.hh>
std::string QPDF::qpdf_version = "8.0.0";
std::string QPDF::qpdf_version = "8.0.1";
static char const* EMPTY_PDF =
"%PDF-1.3\n"

View File

@ -5,8 +5,8 @@
<!ENTITY mdash "&#x2014;">
<!ENTITY ndash "&#x2013;">
<!ENTITY nbsp "&#xA0;">
<!ENTITY swversion "8.0.0">
<!ENTITY lastreleased "February 25, 2018">
<!ENTITY swversion "8.0.1">
<!ENTITY lastreleased "March 4, 2018">
]>
<book>
<bookinfo>
@ -3062,6 +3062,30 @@ print "\n";
<filename>ChangeLog</filename> in the source distribution.
</para>
<variablelist>
<varlistentry>
<term>8.0.1: March 4, 2018</term>
<listitem>
<itemizedlist>
<listitem>
<para>
Disregard data check errors when uncompressing
<option>/FlateDecode</option> streams. This is consistent with
most other PDF readers and allows qpdf to recover data from
another class of malformed PDF files.
</para>
</listitem>
<listitem>
<para>
On the command line when specifying page ranges, support
preceding a page number by &ldquo;r&rdquo; to indicate that it
should be counted from the end. For example, the range
<literal>r3-r1</literal> would indicate the last three pages
of a document.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<varlistentry>
<term>8.0.0: February 25, 2018</term>
<listitem>