2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-04 19:30:53 +00:00

update for 2.1.2

git-svn-id: svn+q:///qpdf/trunk@934 71b93d88-0707-0410-a8cf-f5a4172ac649
This commit is contained in:
Jay Berkenbilt 2010-01-25 01:21:06 +00:00
parent 26a3c3a1c4
commit 375b494e57
6 changed files with 30 additions and 5 deletions

View File

@ -1,3 +1,12 @@
2010-01-24 Jay Berkenbilt <ejb@ql.org>
* 2.1.2: release
* libqpdf/QPDFWriter.cc: fix logic error in padding calculation.
When writing linearized files with cross reference streams, the
padding calculation failed to take differences in sizes of
compressed data between pass 1 and pass 2 into consideration.
2009-12-14 Jay Berkenbilt <ejb@ql.org> 2009-12-14 Jay Berkenbilt <ejb@ql.org>
* 2.1.1: release * 2.1.1: release

View File

@ -4,6 +4,8 @@ Release Reminders
* Increment shared library version information as needed * Increment shared library version information as needed
(libqpdf/build.mk) (libqpdf/build.mk)
* Update release notes in manual
* Add a release entry to ChangeLog * Add a release entry to ChangeLog
* Make sure version numbers are consistent in the following * Make sure version numbers are consistent in the following

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. dnl This config.in requires autoconf 2.5 or greater.
AC_PREREQ(2.60) AC_PREREQ(2.60)
AC_INIT(qpdf,2.1.1) AC_INIT(qpdf,2.1.2)
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_FILES([autoconf.mk]) AC_CONFIG_FILES([autoconf.mk])

View File

@ -15,7 +15,7 @@
#include <qpdf/QPDF_Null.hh> #include <qpdf/QPDF_Null.hh>
#include <qpdf/QPDF_Dictionary.hh> #include <qpdf/QPDF_Dictionary.hh>
std::string QPDF::qpdf_version = "2.1.1"; std::string QPDF::qpdf_version = "2.1.2";
void void
QPDF::InputSource::setLastOffset(off_t offset) QPDF::InputSource::setLastOffset(off_t offset)

View File

@ -5,8 +5,8 @@
<!ENTITY mdash "&#x2014;"> <!ENTITY mdash "&#x2014;">
<!ENTITY ndash "&#x2013;"> <!ENTITY ndash "&#x2013;">
<!ENTITY nbsp "&#xA0;"> <!ENTITY nbsp "&#xA0;">
<!ENTITY swversion "2.1.1"> <!ENTITY swversion "2.1.2">
<!ENTITY lastreleased "December 14, 2009"> <!ENTITY lastreleased "January 24, 2010">
]> ]>
<book> <book>
<bookinfo> <bookinfo>
@ -2071,6 +2071,20 @@ print "\n";
<filename>ChangeLog</filename> in the source distribution. <filename>ChangeLog</filename> in the source distribution.
</para> </para>
<variablelist> <variablelist>
<varlistentry>
<term>2.1.2: January 24, 2010</term>
<listitem>
<itemizedlist>
<listitem>
<para>
Fix bug in padding around first half cross reference stream in
linearized files. The bug could cause an assertion failure
when linearizing certain unlucky files.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<varlistentry> <varlistentry>
<term>2.1.1: December 14, 2009</term> <term>2.1.1: December 14, 2009</term>
<listitem> <listitem>

View File

@ -1,6 +1,6 @@
Summary: Command-line tools and library for transforming PDF files Summary: Command-line tools and library for transforming PDF files
Name: qpdf Name: qpdf
Version: 2.1.1 Version: 2.1.2
Release: 1%{?dist} Release: 1%{?dist}
License: Artistic License: Artistic
Group: System Environment/Libraries Group: System Environment/Libraries