Commit c630c9e4d6a6bf374056cee0ced6d47299905bf2

Authored by Jay Berkenbilt
Committed by GitHub
2 parents 2ff7ac8a d1834d43

Merge pull request #1000 from m-holger/bump

Bump version to 11.5.0
CMakeLists.txt
... ... @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.16)
5 5 # the project line. When updating the version, check make_dist for all
6 6 # the places it has to be updated.
7 7 project(qpdf
8   - VERSION 11.4.0
  8 + VERSION 11.5.0
9 9 LANGUAGES C CXX)
10 10  
11 11 # Enable correct rpath handling for MacOSX
... ...
include/qpdf/DLL.h
... ... @@ -25,9 +25,9 @@
25 25  
26 26 /* The first version of qpdf to include the version constants is 10.6.0. */
27 27 #define QPDF_MAJOR_VERSION 11
28   -#define QPDF_MINOR_VERSION 4
  28 +#define QPDF_MINOR_VERSION 5
29 29 #define QPDF_PATCH_VERSION 0
30   -#define QPDF_VERSION "11.4.0"
  30 +#define QPDF_VERSION "11.5.0"
31 31  
32 32 /*
33 33 * This file defines symbols that control the which functions,
... ...
manual/conf.py
... ... @@ -16,7 +16,7 @@ project = 'QPDF'
16 16 copyright = '2005-2023, 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 = '11.4.0'
  19 +release = '11.5.0'
20 20 version = release
21 21 extensions = [
22 22 'sphinx_rtd_theme',
... ...