Commit 6fe1e9de400cf3c86233958d5cef0d2e20b09938
1 parent
5c891cf4
Prepare 8.0.1 release
Showing
4 changed files
with
31 additions
and
5 deletions
ChangeLog
| 1 | 2018-03-04 Jay Berkenbilt <ejb@ql.org> | 1 | 2018-03-04 Jay Berkenbilt <ejb@ql.org> |
| 2 | 2 | ||
| 3 | + * 8.0.1: release | ||
| 4 | + | ||
| 3 | * On the command line when specifying page ranges, support | 5 | * On the command line when specifying page ranges, support |
| 4 | preceding a page number by "r" to indicate that it should be | 6 | preceding a page number by "r" to indicate that it should be |
| 5 | counted from the end. For example, the range r3-r1 would indicate | 7 | counted from the end. For example, the range r3-r1 would indicate |
configure.ac
| @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. | @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. | ||
| 2 | dnl This config.in requires autoconf 2.5 or greater. | 2 | dnl This config.in requires autoconf 2.5 or greater. |
| 3 | 3 | ||
| 4 | AC_PREREQ([2.68]) | 4 | AC_PREREQ([2.68]) |
| 5 | -AC_INIT([qpdf],[8.0.0]) | 5 | +AC_INIT([qpdf],[8.0.1]) |
| 6 | 6 | ||
| 7 | AC_CONFIG_MACRO_DIR([m4]) | 7 | AC_CONFIG_MACRO_DIR([m4]) |
| 8 | AC_CONFIG_FILES([autoconf.mk]) | 8 | AC_CONFIG_FILES([autoconf.mk]) |
| @@ -31,7 +31,7 @@ LT_INIT([win32-dll]) | @@ -31,7 +31,7 @@ LT_INIT([win32-dll]) | ||
| 31 | # LT = libtool | 31 | # LT = libtool |
| 32 | LT_CURRENT=21 | 32 | LT_CURRENT=21 |
| 33 | LT_AGE=0 | 33 | LT_AGE=0 |
| 34 | -LT_REVISION=0 | 34 | +LT_REVISION=1 |
| 35 | AC_SUBST(LT_CURRENT) | 35 | AC_SUBST(LT_CURRENT) |
| 36 | AC_SUBST(LT_REVISION) | 36 | AC_SUBST(LT_REVISION) |
| 37 | AC_SUBST(LT_AGE) | 37 | AC_SUBST(LT_AGE) |
libqpdf/QPDF.cc
| @@ -19,7 +19,7 @@ | @@ -19,7 +19,7 @@ | ||
| 19 | #include <qpdf/QPDF_Null.hh> | 19 | #include <qpdf/QPDF_Null.hh> |
| 20 | #include <qpdf/QPDF_Dictionary.hh> | 20 | #include <qpdf/QPDF_Dictionary.hh> |
| 21 | 21 | ||
| 22 | -std::string QPDF::qpdf_version = "8.0.0"; | 22 | +std::string QPDF::qpdf_version = "8.0.1"; |
| 23 | 23 | ||
| 24 | static char const* EMPTY_PDF = | 24 | static char const* EMPTY_PDF = |
| 25 | "%PDF-1.3\n" | 25 | "%PDF-1.3\n" |
manual/qpdf-manual.xml
| @@ -5,8 +5,8 @@ | @@ -5,8 +5,8 @@ | ||
| 5 | <!ENTITY mdash "—"> | 5 | <!ENTITY mdash "—"> |
| 6 | <!ENTITY ndash "–"> | 6 | <!ENTITY ndash "–"> |
| 7 | <!ENTITY nbsp " "> | 7 | <!ENTITY nbsp " "> |
| 8 | -<!ENTITY swversion "8.0.0"> | ||
| 9 | -<!ENTITY lastreleased "February 25, 2018"> | 8 | +<!ENTITY swversion "8.0.1"> |
| 9 | +<!ENTITY lastreleased "March 4, 2018"> | ||
| 10 | ]> | 10 | ]> |
| 11 | <book> | 11 | <book> |
| 12 | <bookinfo> | 12 | <bookinfo> |
| @@ -3063,6 +3063,30 @@ print "\n"; | @@ -3063,6 +3063,30 @@ print "\n"; | ||
| 3063 | </para> | 3063 | </para> |
| 3064 | <variablelist> | 3064 | <variablelist> |
| 3065 | <varlistentry> | 3065 | <varlistentry> |
| 3066 | + <term>8.0.1: March 4, 2018</term> | ||
| 3067 | + <listitem> | ||
| 3068 | + <itemizedlist> | ||
| 3069 | + <listitem> | ||
| 3070 | + <para> | ||
| 3071 | + Disregard data check errors when uncompressing | ||
| 3072 | + <option>/FlateDecode</option> streams. This is consistent with | ||
| 3073 | + most other PDF readers and allows qpdf to recover data from | ||
| 3074 | + another class of malformed PDF files. | ||
| 3075 | + </para> | ||
| 3076 | + </listitem> | ||
| 3077 | + <listitem> | ||
| 3078 | + <para> | ||
| 3079 | + On the command line when specifying page ranges, support | ||
| 3080 | + preceding a page number by “r” to indicate that it | ||
| 3081 | + should be counted from the end. For example, the range | ||
| 3082 | + <literal>r3-r1</literal> would indicate the last three pages | ||
| 3083 | + of a document. | ||
| 3084 | + </para> | ||
| 3085 | + </listitem> | ||
| 3086 | + </itemizedlist> | ||
| 3087 | + </listitem> | ||
| 3088 | + </varlistentry> | ||
| 3089 | + <varlistentry> | ||
| 3066 | <term>8.0.0: February 25, 2018</term> | 3090 | <term>8.0.0: February 25, 2018</term> |
| 3067 | <listitem> | 3091 | <listitem> |
| 3068 | <itemizedlist> | 3092 | <itemizedlist> |