Commit b1a78be1a8a09031c544daa48e9c7e1f95a18e80
1 parent
e61ee88d
Prepare 8.4.2 release
Showing
5 changed files
with
22 additions
and
7 deletions
ChangeLog
configure.ac
| @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. | @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. | ||
| 2 | dnl This config.in requires autoconf 2.5 or greater. | 2 | dnl This config.in requires autoconf 2.5 or greater. |
| 3 | 3 | ||
| 4 | AC_PREREQ([2.68]) | 4 | AC_PREREQ([2.68]) |
| 5 | -AC_INIT([qpdf],[8.4.1]) | 5 | +AC_INIT([qpdf],[8.4.2]) |
| 6 | 6 | ||
| 7 | AC_CONFIG_MACRO_DIR([m4]) | 7 | AC_CONFIG_MACRO_DIR([m4]) |
| 8 | AC_CONFIG_FILES([autoconf.mk]) | 8 | AC_CONFIG_FILES([autoconf.mk]) |
| @@ -53,7 +53,7 @@ LT_INIT([win32-dll]) | @@ -53,7 +53,7 @@ LT_INIT([win32-dll]) | ||
| 53 | # LT = libtool | 53 | # LT = libtool |
| 54 | LT_CURRENT=25 | 54 | LT_CURRENT=25 |
| 55 | LT_AGE=4 | 55 | LT_AGE=4 |
| 56 | -LT_REVISION=1 | 56 | +LT_REVISION=2 |
| 57 | AC_SUBST(LT_CURRENT) | 57 | AC_SUBST(LT_CURRENT) |
| 58 | AC_SUBST(LT_REVISION) | 58 | AC_SUBST(LT_REVISION) |
| 59 | AC_SUBST(LT_AGE) | 59 | AC_SUBST(LT_AGE) |
libqpdf/QPDF.cc
| @@ -21,7 +21,7 @@ | @@ -21,7 +21,7 @@ | ||
| 21 | #include <qpdf/QPDF_Dictionary.hh> | 21 | #include <qpdf/QPDF_Dictionary.hh> |
| 22 | #include <qpdf/QPDF_Stream.hh> | 22 | #include <qpdf/QPDF_Stream.hh> |
| 23 | 23 | ||
| 24 | -std::string QPDF::qpdf_version = "8.4.1"; | 24 | +std::string QPDF::qpdf_version = "8.4.2"; |
| 25 | 25 | ||
| 26 | static char const* EMPTY_PDF = | 26 | static char const* EMPTY_PDF = |
| 27 | "%PDF-1.3\n" | 27 | "%PDF-1.3\n" |
manual/qpdf-manual.xml
| @@ -5,8 +5,8 @@ | @@ -5,8 +5,8 @@ | ||
| 5 | <!ENTITY mdash "—"> | 5 | <!ENTITY mdash "—"> |
| 6 | <!ENTITY ndash "–"> | 6 | <!ENTITY ndash "–"> |
| 7 | <!ENTITY nbsp " "> | 7 | <!ENTITY nbsp " "> |
| 8 | -<!ENTITY swversion "8.4.1"> | ||
| 9 | -<!ENTITY lastreleased "April 27, 2019"> | 8 | +<!ENTITY swversion "8.4.2"> |
| 9 | +<!ENTITY lastreleased "May 18, 2019"> | ||
| 10 | ]> | 10 | ]> |
| 11 | <book> | 11 | <book> |
| 12 | <bookinfo> | 12 | <bookinfo> |
| @@ -4348,7 +4348,18 @@ print "\n"; | @@ -4348,7 +4348,18 @@ print "\n"; | ||
| 4348 | </para> | 4348 | </para> |
| 4349 | <variablelist> | 4349 | <variablelist> |
| 4350 | <varlistentry> | 4350 | <varlistentry> |
| 4351 | - <term>8.4.1: April 21, 2019</term> | 4351 | + <term>8.4.2: May 18, 2019</term> |
| 4352 | + <listitem> | ||
| 4353 | + <para> | ||
| 4354 | + This release has just one change: correction of a buffer overrun | ||
| 4355 | + in the Windows code used to open files. Windows users should | ||
| 4356 | + take this update. There are no code changes that affect | ||
| 4357 | + non-Windows releases. | ||
| 4358 | + </para> | ||
| 4359 | + </listitem> | ||
| 4360 | + </varlistentry> | ||
| 4361 | + <varlistentry> | ||
| 4362 | + <term>8.4.1: April 27, 2019</term> | ||
| 4352 | <listitem> | 4363 | <listitem> |
| 4353 | <itemizedlist> | 4364 | <itemizedlist> |
| 4354 | <listitem> | 4365 | <listitem> |
qpdf/qpdf.cc
| @@ -30,7 +30,7 @@ static int const EXIT_WARNING = 3; | @@ -30,7 +30,7 @@ static int const EXIT_WARNING = 3; | ||
| 30 | 30 | ||
| 31 | static char const* whoami = 0; | 31 | static char const* whoami = 0; |
| 32 | 32 | ||
| 33 | -static std::string expected_version = "8.4.1"; | 33 | +static std::string expected_version = "8.4.2"; |
| 34 | 34 | ||
| 35 | struct PageSpec | 35 | struct PageSpec |
| 36 | { | 36 | { |