Commit d8371889d070d2f88636434ebd8412708a63e54e
1 parent
414c83f7
Prepare 11.6.4 release
Showing
5 changed files
with
19 additions
and
5 deletions
CMakeLists.txt
| @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.16) | @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.16) | ||
| 5 | # the project line. When updating the version, check make_dist for all | 5 | # the project line. When updating the version, check make_dist for all |
| 6 | # the places it has to be updated. | 6 | # the places it has to be updated. |
| 7 | project(qpdf | 7 | project(qpdf |
| 8 | - VERSION 11.6.3 | 8 | + VERSION 11.6.4 |
| 9 | LANGUAGES C CXX) | 9 | LANGUAGES C CXX) |
| 10 | 10 | ||
| 11 | # Enable correct rpath handling for MacOSX | 11 | # Enable correct rpath handling for MacOSX |
ChangeLog
include/qpdf/DLL.h
| @@ -26,8 +26,8 @@ | @@ -26,8 +26,8 @@ | ||
| 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 11 | 27 | #define QPDF_MAJOR_VERSION 11 |
| 28 | #define QPDF_MINOR_VERSION 6 | 28 | #define QPDF_MINOR_VERSION 6 |
| 29 | -#define QPDF_PATCH_VERSION 3 | ||
| 30 | -#define QPDF_VERSION "11.6.3" | 29 | +#define QPDF_PATCH_VERSION 4 |
| 30 | +#define QPDF_VERSION "11.6.4" | ||
| 31 | 31 | ||
| 32 | /* | 32 | /* |
| 33 | * This file defines symbols that control the which functions, | 33 | * This file defines symbols that control the which functions, |
manual/conf.py
| @@ -16,7 +16,7 @@ project = 'QPDF' | @@ -16,7 +16,7 @@ project = 'QPDF' | ||
| 16 | copyright = '2005-2023, Jay Berkenbilt' | 16 | copyright = '2005-2023, 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 = '11.6.3' | 19 | +release = '11.6.4' |
| 20 | version = release | 20 | version = release |
| 21 | extensions = [ | 21 | extensions = [ |
| 22 | 'sphinx_rtd_theme', | 22 | 'sphinx_rtd_theme', |
manual/release-notes.rst
| @@ -38,6 +38,16 @@ Planned changes for future 12.x (subject to change): | @@ -38,6 +38,16 @@ Planned changes for future 12.x (subject to change): | ||
| 38 | 38 | ||
| 39 | .. x.y.z: not yet released | 39 | .. x.y.z: not yet released |
| 40 | 40 | ||
| 41 | +11.6.4: December 10, 2023 | ||
| 42 | + - Bug fixes: | ||
| 43 | + | ||
| 44 | + - When running ``cmake --install --component dev``, install cmake | ||
| 45 | + files, which were previously omitted from the ``dev`` component | ||
| 46 | + | ||
| 47 | + - Fix the Linux binary build to use older libraries so it | ||
| 48 | + continues to work in AWS Lambda and other older execution | ||
| 49 | + environments. | ||
| 50 | + | ||
| 41 | 11.6.3: October 15, 2023 | 51 | 11.6.3: October 15, 2023 |
| 42 | - Bug fixes: | 52 | - Bug fixes: |
| 43 | 53 | ||
| @@ -48,7 +58,7 @@ Planned changes for future 12.x (subject to change): | @@ -48,7 +58,7 @@ Planned changes for future 12.x (subject to change): | ||
| 48 | content streams with default settings. | 58 | content streams with default settings. |
| 49 | 59 | ||
| 50 | - The linearization specification precludes linearized files that | 60 | - The linearization specification precludes linearized files that |
| 51 | - require offets past the 4 GB mark. A bug in qpdf was preventing | 61 | + require offsets past the 4 GB mark. A bug in qpdf was preventing |
| 52 | it from working when offsets had to pass the 2 GB mark. This has | 62 | it from working when offsets had to pass the 2 GB mark. This has |
| 53 | been corrected. | 63 | been corrected. |
| 54 | 64 |