aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2022-04-09 20:46:43 +0200
committerJay Berkenbilt <ejb@ql.org>2022-04-09 23:33:29 +0200
commitec219100668357e46cc8640386e2332379956b7c (patch)
tree32ffd810680ad1ca90b79503d0d37464cee99985
parent37f7f57dc58786edfcdfd35d41bad71615e0711b (diff)
downloadqpdf-ec219100668357e46cc8640386e2332379956b7c.tar.zst
Bump version to 11.0.0, indicating ABI-breaking changes
-rw-r--r--CMakeLists.txt5
-rw-r--r--include/qpdf/DLL.h8
-rwxr-xr-xmake_dist1
-rw-r--r--manual/conf.py2
4 files changed, 8 insertions, 8 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a71a2b80..569da980 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2,9 +2,10 @@
cmake_minimum_required(VERSION 3.16)
# 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
- VERSION 10.6.3
+ VERSION 11.0.0
LANGUAGES C CXX)
# Enable correct rpath handling for MacOSX
diff --git a/include/qpdf/DLL.h b/include/qpdf/DLL.h
index 5c2c77d7..528a4a03 100644
--- a/include/qpdf/DLL.h
+++ b/include/qpdf/DLL.h
@@ -24,10 +24,10 @@
#define QPDF_DLL_HH
/* The first version of qpdf to include the version constants is 10.6.0. */
-#define QPDF_MAJOR_VERSION 10
-#define QPDF_MINOR_VERSION 6
-#define QPDF_PATCH_VERSION 3
-#define QPDF_VERSION "10.6.3"
+#define QPDF_MAJOR_VERSION 11
+#define QPDF_MINOR_VERSION 0
+#define QPDF_PATCH_VERSION 0
+#define QPDF_VERSION "11.0.0"
#if (defined _WIN32 || defined __CYGWIN__) && defined(DLL_EXPORT)
# define QPDF_DLL __declspec(dllexport)
diff --git a/make_dist b/make_dist
index 3895f3ca..acbf71e3 100755
--- a/make_dist
+++ b/make_dist
@@ -106,7 +106,6 @@ sub get_version_from_cmake
my $saw_project = 0;
while (<$fh>)
{
- print;
if (m/project\(qpdf/)
{
$saw_project = 1;
diff --git a/manual/conf.py b/manual/conf.py
index 20e950fa..be8e4c64 100644
--- a/manual/conf.py
+++ b/manual/conf.py
@@ -16,7 +16,7 @@ project = 'QPDF'
copyright = '2005-2022, Jay Berkenbilt'
author = 'Jay Berkenbilt'
# make_dist and the CI build lexically find the release version from this file.
-release = '10.6.3'
+release = '11.0.0'
version = release
extensions = [
'sphinx_rtd_theme',