2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-12-22 02:49:00 +00:00

Prepare 10.0.0 release

This commit is contained in:
Jay Berkenbilt 2020-04-06 11:27:01 -04:00
parent 222ec04990
commit 1e629c278a
8 changed files with 26 additions and 22 deletions

View File

@ -1,5 +1,7 @@
2020-04-06 Jay Berkenbilt <ejb@ql.org>
* 10.0.0: release
* Move random number generation into the crypto providers. The old
os-based secure random number generation with fallback to insecure
random number generation (only if allowed at build time) has moved

View File

@ -188,6 +188,8 @@ RELEASE PREPARATION
* qpdf/qpdf.cc
`make_dist` verifies this consistency.
* Run ./autogen.sh
* Add a release entry to ChangeLog.

View File

@ -1,11 +1,11 @@
3fa4ba7aa1286928e542cd2dd221ce43775e03c9689d82edd1cafc80bf51b0a5 configure.ac
2bf5c9f65e959d8b7c9b0a94c0c5f3658d116c3e9d28d199fbb93b114ac37c83 configure.ac
d3f9ee6f6f0846888d9a10fd3dad2e4b1258be84205426cf04d7cef02d61dad7 aclocal.m4
b0ce6d1dba8effa47d25154b2bb56eddafc997254a0f3f903cf9b6abffc03616 libqpdf/qpdf/qpdf-config.h.in
5297971a0ef90bcd5563eb3f7127a032bb76d3ae2af7258bf13479caf8983a60 m4/ax_cxx_compile_stdcxx.m4
35bc5c645dc42d47f2daeea06f8f3e767c8a1aee6a35eb2b4854fd2ce66c3413 m4/ax_random_device.m4
6a1e4f8aa2902d7993300660c43e6ee479b4b6781ed7d5ef9c9f9f1cc46623b7 m4/libtool.m4
26fa3285c35dd6ab00ed1e466ba92a17e4655e01897731ec18a587a4cf5e4f8d m4/lt~obsolete.m4
e77ebba8361b36f14b4d0927173a034b98c5d05049697a9ded84d85eb99a7990 m4/ltoptions.m4
5a6735cda60e0ba0d1b706c0ef648f5d096298da46daefd9cdecdb6a0f4584d3 m4/ltsugar.m4
a27b754709de61575197bf5a980696c98ae49da3f92f0de8ee7f42dd543b7465 m4/ltversion.m4
26fa3285c35dd6ab00ed1e466ba92a17e4655e01897731ec18a587a4cf5e4f8d m4/lt~obsolete.m4
9fab676fae13feb97d5183a8ed86ae9398c76d21927c28bc59460d230f3e0884 m4/pkg.m4

24
configure vendored
View File

@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for qpdf 9.1.1.
# Generated by GNU Autoconf 2.69 for qpdf 10.0.0.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@ -587,8 +587,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='qpdf'
PACKAGE_TARNAME='qpdf'
PACKAGE_VERSION='9.1.1'
PACKAGE_STRING='qpdf 9.1.1'
PACKAGE_VERSION='10.0.0'
PACKAGE_STRING='qpdf 10.0.0'
PACKAGE_BUGREPORT=''
PACKAGE_URL=''
@ -1376,7 +1376,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures qpdf 9.1.1 to adapt to many kinds of systems.
\`configure' configures qpdf 10.0.0 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@ -1442,7 +1442,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of qpdf 9.1.1:";;
short | recursive ) echo "Configuration of qpdf 10.0.0:";;
esac
cat <<\_ACEOF
@ -1628,7 +1628,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
qpdf configure 9.1.1
qpdf configure 10.0.0
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@ -2297,7 +2297,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by qpdf $as_me 9.1.1, which was
It was created by qpdf $as_me 10.0.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@ -16207,9 +16207,9 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# * Otherwise, increment LT_REVISION
# LT = libtool
LT_CURRENT=27
LT_AGE=1
LT_REVISION=1
LT_CURRENT=28
LT_AGE=0
LT_REVISION=0
@ -18945,7 +18945,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by qpdf $as_me 9.1.1, which was
This file was extended by qpdf $as_me 10.0.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -19011,7 +19011,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
qpdf config.status 9.1.1
qpdf config.status 10.0.0
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"

View File

@ -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],[9.1.1])
AC_INIT([qpdf],[10.0.0])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_FILES([autoconf.mk])
@ -52,9 +52,9 @@ LT_INIT([win32-dll])
# * Otherwise, increment LT_REVISION
# LT = libtool
LT_CURRENT=27
LT_AGE=1
LT_REVISION=1
LT_CURRENT=28
LT_AGE=0
LT_REVISION=0
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
AC_SUBST(LT_AGE)

View File

@ -25,7 +25,7 @@
#include <qpdf/QPDF_Stream.hh>
#include <qpdf/QPDF_Array.hh>
std::string QPDF::qpdf_version = "9.1.1";
std::string QPDF::qpdf_version = "10.0.0";
static char const* EMPTY_PDF =
"%PDF-1.3\n"

View File

@ -5,8 +5,8 @@
<!ENTITY mdash "&#x2014;">
<!ENTITY ndash "&#x2013;">
<!ENTITY nbsp "&#xA0;">
<!ENTITY swversion "9.1.1">
<!ENTITY lastreleased "January 26, 2020">
<!ENTITY swversion "10.0.0">
<!ENTITY lastreleased "April 6, 2020">
]>
<book>
<bookinfo>

View File

@ -38,7 +38,7 @@ static int constexpr EXIT_CORRECT_PASSWORD = 3;
static char const* whoami = 0;
static std::string expected_version = "9.1.1";
static std::string expected_version = "10.0.0";
struct PageSpec
{