Commit ec219100668357e46cc8640386e2332379956b7c
1 parent
37f7f57d
Bump version to 11.0.0, indicating ABI-breaking changes
Showing
4 changed files
with
8 additions
and
8 deletions
CMakeLists.txt
| ... | ... | @@ -2,9 +2,10 @@ |
| 2 | 2 | cmake_minimum_required(VERSION 3.16) |
| 3 | 3 | |
| 4 | 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 | 7 | project(qpdf |
| 7 | - VERSION 10.6.3 | |
| 8 | + VERSION 11.0.0 | |
| 8 | 9 | LANGUAGES C CXX) |
| 9 | 10 | |
| 10 | 11 | # Enable correct rpath handling for MacOSX | ... | ... |
include/qpdf/DLL.h
| ... | ... | @@ -24,10 +24,10 @@ |
| 24 | 24 | #define QPDF_DLL_HH |
| 25 | 25 | |
| 26 | 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 | 32 | #if (defined _WIN32 || defined __CYGWIN__) && defined(DLL_EXPORT) |
| 33 | 33 | # define QPDF_DLL __declspec(dllexport) | ... | ... |
make_dist
manual/conf.py
| ... | ... | @@ -16,7 +16,7 @@ project = 'QPDF' |
| 16 | 16 | copyright = '2005-2022, Jay Berkenbilt' |
| 17 | 17 | author = 'Jay Berkenbilt' |
| 18 | 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 | 20 | version = release |
| 21 | 21 | extensions = [ |
| 22 | 22 | 'sphinx_rtd_theme', | ... | ... |