mirror of
https://github.com/qpdf/qpdf.git
synced 2024-12-22 10:58:58 +00:00
Prepare 3.0.1 release
This commit is contained in:
parent
e4076762fe
commit
59432b5c70
@ -1,5 +1,7 @@
|
|||||||
2012-08-11 Jay Berkenbilt <ejb@ql.org>
|
2012-08-11 Jay Berkenbilt <ejb@ql.org>
|
||||||
|
|
||||||
|
* 3.0.1: release
|
||||||
|
|
||||||
* Bug fix: let EOF terminate a literal token as well as
|
* Bug fix: let EOF terminate a literal token as well as
|
||||||
whitespace or comments.
|
whitespace or comments.
|
||||||
|
|
||||||
|
8
TODO
8
TODO
@ -1,11 +1,3 @@
|
|||||||
Next
|
|
||||||
====
|
|
||||||
|
|
||||||
* Update release notes for 3.0.0 to mention pkg-config support. Also
|
|
||||||
mention in latest release notes including that it was inadvertently
|
|
||||||
left out of the release notes for 3.0.0.
|
|
||||||
|
|
||||||
|
|
||||||
General
|
General
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
@ -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.68])
|
AC_PREREQ([2.68])
|
||||||
AC_INIT([qpdf],[3.0.0])
|
AC_INIT([qpdf],[3.0.1])
|
||||||
|
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AC_CONFIG_FILES([autoconf.mk])
|
AC_CONFIG_FILES([autoconf.mk])
|
||||||
|
@ -18,7 +18,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 = "3.0.0";
|
std::string QPDF::qpdf_version = "3.0.1";
|
||||||
|
|
||||||
static char const* EMPTY_PDF =
|
static char const* EMPTY_PDF =
|
||||||
"%PDF-1.3\n"
|
"%PDF-1.3\n"
|
||||||
|
@ -80,4 +80,4 @@ $(OBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.$(LOBJ): libqpdf/%.cc
|
|||||||
# * Otherwise, increment REVISION
|
# * Otherwise, increment REVISION
|
||||||
|
|
||||||
$(TARGETS_libqpdf): $(OBJS_libqpdf)
|
$(TARGETS_libqpdf): $(OBJS_libqpdf)
|
||||||
$(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),8,1,0)
|
$(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),8,2,0)
|
||||||
|
@ -5,8 +5,8 @@
|
|||||||
<!ENTITY mdash "—">
|
<!ENTITY mdash "—">
|
||||||
<!ENTITY ndash "–">
|
<!ENTITY ndash "–">
|
||||||
<!ENTITY nbsp " ">
|
<!ENTITY nbsp " ">
|
||||||
<!ENTITY swversion "3.0.0">
|
<!ENTITY swversion "3.0.1">
|
||||||
<!ENTITY lastreleased "August 2, 2012">
|
<!ENTITY lastreleased "August 11, 2012">
|
||||||
]>
|
]>
|
||||||
<book>
|
<book>
|
||||||
<bookinfo>
|
<bookinfo>
|
||||||
@ -2381,6 +2381,31 @@ print "\n";
|
|||||||
For a detailed list of changes, please see the file
|
For a detailed list of changes, please see the file
|
||||||
<filename>ChangeLog</filename> in the source distribution.
|
<filename>ChangeLog</filename> in the source distribution.
|
||||||
</para>
|
</para>
|
||||||
|
<variablelist>
|
||||||
|
<varlistentry>
|
||||||
|
<term>3.0.1: August 11, 2012</term>
|
||||||
|
<listitem>
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Version 3.0.0 included addition of files for
|
||||||
|
<command>pkg-config</command>, but this was not mentioned in
|
||||||
|
the release notes. The release notes for 3.0.0 were updated
|
||||||
|
to mention this.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Bug fix: if an object stream ended with a scalar object not
|
||||||
|
followed by space, qpdf would incorrectly report that it
|
||||||
|
encountered a premature EOF. This bug has been in qpdf since
|
||||||
|
version 2.0.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
</variablelist>
|
||||||
<variablelist>
|
<variablelist>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>3.0.0: August 2, 2012</term>
|
<term>3.0.0: August 2, 2012</term>
|
||||||
@ -2499,6 +2524,12 @@ print "\n";
|
|||||||
<command>./configure</command>.
|
<command>./configure</command>.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
The file <filename>libqpdf.pc</filename> is now installed to
|
||||||
|
support <command>pkg-config</command>.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Image comparison tests are off by default now since they are
|
Image comparison tests are off by default now since they are
|
||||||
|
@ -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: 3.0.0
|
Version: 3.0.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: Artistic
|
License: Artistic
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
|
Loading…
Reference in New Issue
Block a user