Bump version to 11.0.0, indicating ABI-breaking changes

This commit is contained in:
Jay Berkenbilt 2022-04-09 14:46:43 -04:00
parent 37f7f57dc5
commit ec21910066
4 changed files with 8 additions and 8 deletions

View File

@ -2,9 +2,10 @@
cmake_minimum_required(VERSION 3.16) cmake_minimum_required(VERSION 3.16)
# make_dist expects the version line to be on a line by itself after # make_dist expects the version line to be on a line by itself after
# the project line. # the project line. When updating the version, check make_dist for all
# the places it has to be updated.
project(qpdf project(qpdf
VERSION 10.6.3 VERSION 11.0.0
LANGUAGES C CXX) LANGUAGES C CXX)
# Enable correct rpath handling for MacOSX # Enable correct rpath handling for MacOSX

View File

@ -24,10 +24,10 @@
#define QPDF_DLL_HH #define QPDF_DLL_HH
/* The first version of qpdf to include the version constants is 10.6.0. */ /* The first version of qpdf to include the version constants is 10.6.0. */
#define QPDF_MAJOR_VERSION 10 #define QPDF_MAJOR_VERSION 11
#define QPDF_MINOR_VERSION 6 #define QPDF_MINOR_VERSION 0
#define QPDF_PATCH_VERSION 3 #define QPDF_PATCH_VERSION 0
#define QPDF_VERSION "10.6.3" #define QPDF_VERSION "11.0.0"
#if (defined _WIN32 || defined __CYGWIN__) && defined(DLL_EXPORT) #if (defined _WIN32 || defined __CYGWIN__) && defined(DLL_EXPORT)
# define QPDF_DLL __declspec(dllexport) # define QPDF_DLL __declspec(dllexport)

View File

@ -106,7 +106,6 @@ sub get_version_from_cmake
my $saw_project = 0; my $saw_project = 0;
while (<$fh>) while (<$fh>)
{ {
print;
if (m/project\(qpdf/) if (m/project\(qpdf/)
{ {
$saw_project = 1; $saw_project = 1;

View File

@ -16,7 +16,7 @@ project = 'QPDF'
copyright = '2005-2022, Jay Berkenbilt' copyright = '2005-2022, Jay Berkenbilt'
author = 'Jay Berkenbilt' author = 'Jay Berkenbilt'
# make_dist and the CI build lexically find the release version from this file. # make_dist and the CI build lexically find the release version from this file.
release = '10.6.3' release = '11.0.0'
version = release version = release
extensions = [ extensions = [
'sphinx_rtd_theme', 'sphinx_rtd_theme',