Prepare 4.0.1 release

This commit is contained in:
Jay Berkenbilt 2013-01-17 09:51:04 -05:00
parent a04a835849
commit 8708fd373d
6 changed files with 45 additions and 6 deletions

View File

@ -1,3 +1,16 @@
2013-01-17 Jay Berkenbilt <ejb@ql.org>
* 4.0.1: release
* Add clarifying comment in QPDF.hh for methods that return the
user password to state that it is no longer possible with newer
encryption formats to recover the user password knowing the owner
password.
* Fix detection of binary attachments in the test suite. This
resolves false test failures on some platforms. No changes to the
actual QPDF code were made.
2012-12-31 Jay Berkenbilt <ejb@ql.org>
* 4.0.0: release

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],[4.0.0])
AC_INIT([qpdf],[4.0.1])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_FILES([autoconf.mk])

View File

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

View File

@ -91,4 +91,4 @@ $(COBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.$(LOBJ): libqpdf/%.c
# * Otherwise, increment REVISION
$(TARGETS_libqpdf): $(OBJS_libqpdf)
$(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),10,0,0)
$(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),10,1,0)

View File

@ -5,8 +5,8 @@
<!ENTITY mdash "&#x2014;">
<!ENTITY ndash "&#x2013;">
<!ENTITY nbsp "&#xA0;">
<!ENTITY swversion "4.0.0">
<!ENTITY lastreleased "December 31, 2012">
<!ENTITY swversion "4.0.1">
<!ENTITY lastreleased "January 17, 2013">
]>
<book>
<bookinfo>
@ -2460,6 +2460,32 @@ print "\n";
<filename>ChangeLog</filename> in the source distribution.
</para>
<variablelist>
<varlistentry>
<term>4.0.1: January 17, 2013</term>
<listitem>
<itemizedlist>
<listitem>
<para>
Fix detection of binary attachments in test suite to avoid
false test failures on some platforms.
</para>
</listitem>
<listitem>
<para>
Add clarifying comment in <filename>QPDF.hh</filename> to
methods that return the user password explaining that it is no
longer possible with newer encryption formats to recover the
user password knowing the owner password. In earlier
encryption formats, the user password was encrypted in the
file using the owner password. In newer encryption formats, a
separate encryption key is used on the file, and that key is
independently encrypted using both the user password and the
owner password.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<varlistentry>
<term>4.0.0: December 31, 2012</term>
<listitem>

View File

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