mirror of
https://github.com/qpdf/qpdf.git
synced 2025-02-06 21:58:34 +00:00
Prepare 4.0.1 release
This commit is contained in:
parent
a04a835849
commit
8708fd373d
13
ChangeLog
13
ChangeLog
@ -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
|
||||
|
@ -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])
|
||||
|
@ -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"
|
||||
|
@ -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)
|
||||
|
@ -5,8 +5,8 @@
|
||||
<!ENTITY mdash "—">
|
||||
<!ENTITY ndash "–">
|
||||
<!ENTITY nbsp " ">
|
||||
<!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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user