Commit b352791a07a5488e6f1f67220ddce147d20aa26a
1 parent
105093ae
Prepare 11.6.1 release
Showing
5 changed files
with
19 additions
and
4 deletions
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.6.0 | |
| 8 | + VERSION 11.6.1 | |
| 9 | 9 | LANGUAGES C CXX) |
| 10 | 10 | |
| 11 | 11 | # Enable correct rpath handling for MacOSX | ... | ... |
ChangeLog
include/qpdf/DLL.h
| ... | ... | @@ -26,8 +26,8 @@ |
| 26 | 26 | /* The first version of qpdf to include the version constants is 10.6.0. */ |
| 27 | 27 | #define QPDF_MAJOR_VERSION 11 |
| 28 | 28 | #define QPDF_MINOR_VERSION 6 |
| 29 | -#define QPDF_PATCH_VERSION 0 | |
| 30 | -#define QPDF_VERSION "11.6.0" | |
| 29 | +#define QPDF_PATCH_VERSION 1 | |
| 30 | +#define QPDF_VERSION "11.6.1" | |
| 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.6.0' | |
| 19 | +release = '11.6.1' | |
| 20 | 20 | version = release |
| 21 | 21 | extensions = [ |
| 22 | 22 | 'sphinx_rtd_theme', | ... | ... |
manual/release-notes.rst
| ... | ... | @@ -35,6 +35,13 @@ Planned changes for future 12.x (subject to change): |
| 35 | 35 | |
| 36 | 36 | .. x.y.z: not yet released |
| 37 | 37 | |
| 38 | +11.6.1: September 5, 2023 | |
| 39 | + - Bug fixes: | |
| 40 | + | |
| 41 | + - Fix a logic error introduced in 11.6.0 in the fix to | |
| 42 | + ``copyForeignObject``. The bug could result in some pages not | |
| 43 | + being copied. | |
| 44 | + | |
| 38 | 45 | 11.6.0: September 3, 2023 |
| 39 | 46 | - Bug fixes: |
| 40 | 47 | ... | ... |