Commit ec219100668357e46cc8640386e2332379956b7c

Authored by Jay Berkenbilt
1 parent 37f7f57d

Bump version to 11.0.0, indicating ABI-breaking changes

CMakeLists.txt
@@ -2,9 +2,10 @@ @@ -2,9 +2,10 @@
2 cmake_minimum_required(VERSION 3.16) 2 cmake_minimum_required(VERSION 3.16)
3 3
4 # make_dist expects the version line to be on a line by itself after 4 # make_dist expects the version line to be on a line by itself after
5 -# the project line. 5 +# the project line. When updating the version, check make_dist for all
  6 +# the places it has to be updated.
6 project(qpdf 7 project(qpdf
7 - VERSION 10.6.3 8 + VERSION 11.0.0
8 LANGUAGES C CXX) 9 LANGUAGES C CXX)
9 10
10 # Enable correct rpath handling for MacOSX 11 # Enable correct rpath handling for MacOSX
include/qpdf/DLL.h
@@ -24,10 +24,10 @@ @@ -24,10 +24,10 @@
24 #define QPDF_DLL_HH 24 #define QPDF_DLL_HH
25 25
26 /* The first version of qpdf to include the version constants is 10.6.0. */ 26 /* The first version of qpdf to include the version constants is 10.6.0. */
27 -#define QPDF_MAJOR_VERSION 10  
28 -#define QPDF_MINOR_VERSION 6  
29 -#define QPDF_PATCH_VERSION 3  
30 -#define QPDF_VERSION "10.6.3" 27 +#define QPDF_MAJOR_VERSION 11
  28 +#define QPDF_MINOR_VERSION 0
  29 +#define QPDF_PATCH_VERSION 0
  30 +#define QPDF_VERSION "11.0.0"
31 31
32 #if (defined _WIN32 || defined __CYGWIN__) && defined(DLL_EXPORT) 32 #if (defined _WIN32 || defined __CYGWIN__) && defined(DLL_EXPORT)
33 # define QPDF_DLL __declspec(dllexport) 33 # define QPDF_DLL __declspec(dllexport)
make_dist
@@ -106,7 +106,6 @@ sub get_version_from_cmake @@ -106,7 +106,6 @@ sub get_version_from_cmake
106 my $saw_project = 0; 106 my $saw_project = 0;
107 while (<$fh>) 107 while (<$fh>)
108 { 108 {
109 - print;  
110 if (m/project\(qpdf/) 109 if (m/project\(qpdf/)
111 { 110 {
112 $saw_project = 1; 111 $saw_project = 1;
manual/conf.py
@@ -16,7 +16,7 @@ project = &#39;QPDF&#39; @@ -16,7 +16,7 @@ project = &#39;QPDF&#39;
16 copyright = '2005-2022, Jay Berkenbilt' 16 copyright = '2005-2022, Jay Berkenbilt'
17 author = 'Jay Berkenbilt' 17 author = 'Jay Berkenbilt'
18 # make_dist and the CI build lexically find the release version from this file. 18 # make_dist and the CI build lexically find the release version from this file.
19 -release = '10.6.3' 19 +release = '11.0.0'
20 version = release 20 version = release
21 extensions = [ 21 extensions = [
22 'sphinx_rtd_theme', 22 'sphinx_rtd_theme',