Commit 2ebdd6929ea15187cdcf72acb19e8cc3047702f9

Authored by Jay Berkenbilt
1 parent e3167c1a

Prepare 7.1.1 release

ChangeLog
  1 +2018-02-04 Jay Berkenbilt <ejb@ql.org>
  2 +
  3 + * 7.1.1: release
  4 +
  5 + * Bug fix: properly linearize files whose /ID has a length of
  6 + other than 16 bytes.
  7 +
  8 + * Rename some test files to avoid files with three dots in their
  9 + names. Fixes #173.
  10 +
  11 + * Fix various build and compilation issues on some platforms and
  12 + compilers. Fixes #176, #172, #177
  13 +
  14 + * Fix a few typos and clarify a few comments in header files.
  15 +
1 16 2018-01-14 Jay Berkenbilt <ejb@ql.org>
2 17  
3 18 * 7.1.0: release
... ...
configure.ac
... ... @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
2 2 dnl This config.in requires autoconf 2.5 or greater.
3 3  
4 4 AC_PREREQ([2.68])
5   -AC_INIT([qpdf],[7.1.0])
  5 +AC_INIT([qpdf],[7.1.1])
6 6  
7 7 AC_CONFIG_MACRO_DIR([m4])
8 8 AC_CONFIG_FILES([autoconf.mk])
... ... @@ -31,7 +31,7 @@ LT_INIT([win32-dll])
31 31 # LT = libtool
32 32 LT_CURRENT=20
33 33 LT_AGE=2
34   -LT_REVISION=0
  34 +LT_REVISION=1
35 35 AC_SUBST(LT_CURRENT)
36 36 AC_SUBST(LT_REVISION)
37 37 AC_SUBST(LT_AGE)
... ...
libqpdf/QPDF.cc
... ... @@ -19,7 +19,7 @@
19 19 #include <qpdf/QPDF_Null.hh>
20 20 #include <qpdf/QPDF_Dictionary.hh>
21 21  
22   -std::string QPDF::qpdf_version = "7.1.0";
  22 +std::string QPDF::qpdf_version = "7.1.1";
23 23  
24 24 static char const* EMPTY_PDF =
25 25 "%PDF-1.3\n"
... ...
manual/qpdf-manual.xml
... ... @@ -5,8 +5,8 @@
5 5 <!ENTITY mdash "&#x2014;">
6 6 <!ENTITY ndash "&#x2013;">
7 7 <!ENTITY nbsp "&#xA0;">
8   -<!ENTITY swversion "7.1.0">
9   -<!ENTITY lastreleased "January 14, 2018">
  8 +<!ENTITY swversion "7.1.1">
  9 +<!ENTITY lastreleased "February 4, 2018">
10 10 ]>
11 11 <book>
12 12 <bookinfo>
... ... @@ -2983,6 +2983,25 @@ print &quot;\n&quot;;
2983 2983 </para>
2984 2984 <variablelist>
2985 2985 <varlistentry>
  2986 + <term>7.1.1: February 4, 2018</term>
  2987 + <listitem>
  2988 + <itemizedlist>
  2989 + <listitem>
  2990 + <para>
  2991 + Bug fix: files whose /ID fields were other than 16 bytes long
  2992 + can now be properly linearlized
  2993 + </para>
  2994 + </listitem>
  2995 + <listitem>
  2996 + <para>
  2997 + A few compile and link issues have been corrected for some
  2998 + platforms.
  2999 + </para>
  3000 + </listitem>
  3001 + </itemizedlist>
  3002 + </listitem>
  3003 + </varlistentry>
  3004 + <varlistentry>
2986 3005 <term>7.1.0: January 14, 2018</term>
2987 3006 <listitem>
2988 3007 <itemizedlist>
... ...