Commit 4ea940b03c03d0c9e297dd2ee64a502f9e7af2a7
1 parent
db2e095a
Prepare 9.0.1 release
Showing
7 changed files
with
12 additions
and
8 deletions
ChangeLog
autofiles.sums
| 1 | -37b41075e24a1daf1f9a598c87387602c17a56a0a7f00c52e937764a1d3a67e3 configure.ac | 1 | +c9713902dde738dc6ff998a906e63ee1008436c5f353382a3bc5b2e6e553eac0 configure.ac |
| 2 | 9c264dc3fac489fd0178d3fa9fd29d5b0ccd37d561e926ef449fa01d99abded7 aclocal.m4 | 2 | 9c264dc3fac489fd0178d3fa9fd29d5b0ccd37d561e926ef449fa01d99abded7 aclocal.m4 |
| 3 | 79ee40c3867f4162a847c005a73a5e388e3882f71dd185d39d9ddf0312133086 libqpdf/qpdf/qpdf-config.h.in | 3 | 79ee40c3867f4162a847c005a73a5e388e3882f71dd185d39d9ddf0312133086 libqpdf/qpdf/qpdf-config.h.in |
| 4 | 35bc5c645dc42d47f2daeea06f8f3e767c8a1aee6a35eb2b4854fd2ce66c3413 m4/ax_random_device.m4 | 4 | 35bc5c645dc42d47f2daeea06f8f3e767c8a1aee6a35eb2b4854fd2ce66c3413 m4/ax_random_device.m4 |
configure
| @@ -15860,7 +15860,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu | @@ -15860,7 +15860,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu | ||
| 15860 | # LT = libtool | 15860 | # LT = libtool |
| 15861 | LT_CURRENT=26 | 15861 | LT_CURRENT=26 |
| 15862 | LT_AGE=0 | 15862 | LT_AGE=0 |
| 15863 | -LT_REVISION=0 | 15863 | +LT_REVISION=1 |
| 15864 | 15864 | ||
| 15865 | 15865 | ||
| 15866 | 15866 |
configure.ac
| @@ -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=26 | 54 | LT_CURRENT=26 |
| 55 | LT_AGE=0 | 55 | LT_AGE=0 |
| 56 | -LT_REVISION=0 | 56 | +LT_REVISION=1 |
| 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
| @@ -24,7 +24,7 @@ | @@ -24,7 +24,7 @@ | ||
| 24 | #include <qpdf/QPDF_Stream.hh> | 24 | #include <qpdf/QPDF_Stream.hh> |
| 25 | #include <qpdf/QPDF_Array.hh> | 25 | #include <qpdf/QPDF_Array.hh> |
| 26 | 26 | ||
| 27 | -std::string QPDF::qpdf_version = "9.0.0"; | 27 | +std::string QPDF::qpdf_version = "9.0.1"; |
| 28 | 28 | ||
| 29 | static char const* EMPTY_PDF = | 29 | static char const* EMPTY_PDF = |
| 30 | "%PDF-1.3\n" | 30 | "%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 "9.0.0"> | ||
| 9 | -<!ENTITY lastreleased "August 31, 2019"> | 8 | +<!ENTITY swversion "9.0.1"> |
| 9 | +<!ENTITY lastreleased "September 20, 2019"> | ||
| 10 | ]> | 10 | ]> |
| 11 | <book> | 11 | <book> |
| 12 | <bookinfo> | 12 | <bookinfo> |
| @@ -4365,7 +4365,7 @@ print "\n"; | @@ -4365,7 +4365,7 @@ print "\n"; | ||
| 4365 | </para> | 4365 | </para> |
| 4366 | <variablelist> | 4366 | <variablelist> |
| 4367 | <varlistentry> | 4367 | <varlistentry> |
| 4368 | - <term>9.0.1: September XXX, 2019</term> | 4368 | + <term>9.0.1: September 20, 2019</term> |
| 4369 | <listitem> | 4369 | <listitem> |
| 4370 | <itemizedlist> | 4370 | <itemizedlist> |
| 4371 | <listitem> | 4371 | <listitem> |
qpdf/qpdf.cc
| @@ -33,7 +33,7 @@ static int const EXIT_WARNING = 3; | @@ -33,7 +33,7 @@ static int const EXIT_WARNING = 3; | ||
| 33 | 33 | ||
| 34 | static char const* whoami = 0; | 34 | static char const* whoami = 0; |
| 35 | 35 | ||
| 36 | -static std::string expected_version = "9.0.0"; | 36 | +static std::string expected_version = "9.0.1"; |
| 37 | 37 | ||
| 38 | struct PageSpec | 38 | struct PageSpec |
| 39 | { | 39 | { |