Commit 117f690c8e20c242788ffab5f50ff86b0772faab

Authored by Jay Berkenbilt
1 parent 507ea15e

update for 2.1.3

git-svn-id: svn+q:///qpdf/trunk@949 71b93d88-0707-0410-a8cf-f5a4172ac649
ChangeLog
1 1 2010-03-27 Jay Berkenbilt <ejb@ql.org>
2 2  
  3 + * 2.1.3: release
  4 +
3 5 * libqpdf/QPDF_optimization.cc (flattenScalarReferences): Flatten
4 6 scalar references for unreferenced objects as well as those seen
5 7 during traversal of the file. This matters when preserving object
... ...
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.60)
5   -AC_INIT(qpdf,2.1.2)
  5 +AC_INIT(qpdf,2.1.3)
6 6  
7 7 AC_CONFIG_MACRO_DIR([m4])
8 8 AC_CONFIG_FILES([autoconf.mk])
... ...
libqpdf/QPDF.cc
... ... @@ -15,7 +15,7 @@
15 15 #include <qpdf/QPDF_Null.hh>
16 16 #include <qpdf/QPDF_Dictionary.hh>
17 17  
18   -std::string QPDF::qpdf_version = "2.1.2";
  18 +std::string QPDF::qpdf_version = "2.1.3";
19 19  
20 20 void
21 21 QPDF::InputSource::setLastOffset(off_t offset)
... ...
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 "2.1.2">
9   -<!ENTITY lastreleased "January 24, 2010">
  8 +<!ENTITY swversion "2.1.3">
  9 +<!ENTITY lastreleased "March 27, 2010">
10 10 ]>
11 11 <book>
12 12 <bookinfo>
... ... @@ -2072,6 +2072,26 @@ print &quot;\n&quot;;
2072 2072 </para>
2073 2073 <variablelist>
2074 2074 <varlistentry>
  2075 + <term>2.1.3: March 27, 2010</term>
  2076 + <listitem>
  2077 + <itemizedlist>
  2078 + <listitem>
  2079 + <para>
  2080 + Fix bug that could cause a failure when rewriting PDF files
  2081 + that contain object streams with unreferenced objects that in
  2082 + turn reference indirect scalars.
  2083 + </para>
  2084 + </listitem>
  2085 + <listitem>
  2086 + <para>
  2087 + Don't complain about (invalid) AES streams that aren't a
  2088 + multiple of 16 bytes. Instead, pad them before decrypting.
  2089 + </para>
  2090 + </listitem>
  2091 + </itemizedlist>
  2092 + </listitem>
  2093 + </varlistentry>
  2094 + <varlistentry>
2075 2095 <term>2.1.2: January 24, 2010</term>
2076 2096 <listitem>
2077 2097 <itemizedlist>
... ...
qpdf.spec
1 1 Summary: Command-line tools and library for transforming PDF files
2 2 Name: qpdf
3   -Version: 2.1.2
  3 +Version: 2.1.3
4 4 Release: 1%{?dist}
5 5 License: Artistic
6 6 Group: System Environment/Libraries
... ...