mirror of
https://github.com/qpdf/qpdf.git
synced 2025-01-03 07:12:28 +00:00
Prepare 8.4.2 release
This commit is contained in:
parent
e61ee88dd2
commit
b1a78be1a8
@ -1,3 +1,7 @@
|
|||||||
|
2019-05-18 Jay Berkenbilt <ejb@ql.org>
|
||||||
|
|
||||||
|
* 8.4.2: release
|
||||||
|
|
||||||
2019-05-16 Jay Berkenbilt <ejb@ql.org>
|
2019-05-16 Jay Berkenbilt <ejb@ql.org>
|
||||||
|
|
||||||
* Fix memory error in Windows-only code from typo. Fixes #330.
|
* Fix memory error in Windows-only code from typo. Fixes #330.
|
||||||
|
@ -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],[8.4.1])
|
AC_INIT([qpdf],[8.4.2])
|
||||||
|
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AC_CONFIG_FILES([autoconf.mk])
|
AC_CONFIG_FILES([autoconf.mk])
|
||||||
@ -53,7 +53,7 @@ LT_INIT([win32-dll])
|
|||||||
# LT = libtool
|
# LT = libtool
|
||||||
LT_CURRENT=25
|
LT_CURRENT=25
|
||||||
LT_AGE=4
|
LT_AGE=4
|
||||||
LT_REVISION=1
|
LT_REVISION=2
|
||||||
AC_SUBST(LT_CURRENT)
|
AC_SUBST(LT_CURRENT)
|
||||||
AC_SUBST(LT_REVISION)
|
AC_SUBST(LT_REVISION)
|
||||||
AC_SUBST(LT_AGE)
|
AC_SUBST(LT_AGE)
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
#include <qpdf/QPDF_Dictionary.hh>
|
#include <qpdf/QPDF_Dictionary.hh>
|
||||||
#include <qpdf/QPDF_Stream.hh>
|
#include <qpdf/QPDF_Stream.hh>
|
||||||
|
|
||||||
std::string QPDF::qpdf_version = "8.4.1";
|
std::string QPDF::qpdf_version = "8.4.2";
|
||||||
|
|
||||||
static char const* EMPTY_PDF =
|
static char const* EMPTY_PDF =
|
||||||
"%PDF-1.3\n"
|
"%PDF-1.3\n"
|
||||||
|
@ -5,8 +5,8 @@
|
|||||||
<!ENTITY mdash "—">
|
<!ENTITY mdash "—">
|
||||||
<!ENTITY ndash "–">
|
<!ENTITY ndash "–">
|
||||||
<!ENTITY nbsp " ">
|
<!ENTITY nbsp " ">
|
||||||
<!ENTITY swversion "8.4.1">
|
<!ENTITY swversion "8.4.2">
|
||||||
<!ENTITY lastreleased "April 27, 2019">
|
<!ENTITY lastreleased "May 18, 2019">
|
||||||
]>
|
]>
|
||||||
<book>
|
<book>
|
||||||
<bookinfo>
|
<bookinfo>
|
||||||
@ -4348,7 +4348,18 @@ print "\n";
|
|||||||
</para>
|
</para>
|
||||||
<variablelist>
|
<variablelist>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term>8.4.1: April 21, 2019</term>
|
<term>8.4.2: May 18, 2019</term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
This release has just one change: correction of a buffer overrun
|
||||||
|
in the Windows code used to open files. Windows users should
|
||||||
|
take this update. There are no code changes that affect
|
||||||
|
non-Windows releases.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
<varlistentry>
|
||||||
|
<term>8.4.1: April 27, 2019</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
|
@ -30,7 +30,7 @@ static int const EXIT_WARNING = 3;
|
|||||||
|
|
||||||
static char const* whoami = 0;
|
static char const* whoami = 0;
|
||||||
|
|
||||||
static std::string expected_version = "8.4.1";
|
static std::string expected_version = "8.4.2";
|
||||||
|
|
||||||
struct PageSpec
|
struct PageSpec
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user