Commit 8a1d34bb74e6bae1b57076485386fc56e7c22aaa

Authored by Jay Berkenbilt
1 parent da42078d

Prepare 11.10.1 release

CMakeLists.txt
... ... @@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.16)
7 7 # also find the version number here. generate_auto_job also reads the
8 8 # version from here.
9 9 project(qpdf
10   - VERSION 11.10.0
  10 + VERSION 11.10.1
11 11 LANGUAGES C CXX)
12 12  
13 13 # Enable correct rpath handling for MacOSX
... ...
ChangeLog
  1 +2025-02-15 Jay Berkenbilt <ejb@ql.org>
  2 +
  3 + * 11.10.1: release
  4 +
  5 + * Detect cygwin as Windows for fix-qdf tests that don't work on
  6 + Windows. The perl used for the test runner in GitHub Actions
  7 + changed. This was causing some non-Windows tests to fail and also
  8 + causing path canonicalization to fail for absolute paths with
  9 + drive letters.
  10 +
  11 + * Detect zopfli by looking for <zopfli/zopfli.h> rather than just
  12 + <zopfli.h>
  13 +
1 14 2025-02-08 Jay Berkenbilt <ejb@ql.org>
2 15  
3 16 * 11.10.0: release
... ...
include/qpdf/DLL.h
... ... @@ -27,12 +27,12 @@
27 27 /* The first version of qpdf to include the version constants is 10.6.0. */
28 28 #define QPDF_MAJOR_VERSION 11
29 29 #define QPDF_MINOR_VERSION 10
30   -#define QPDF_PATCH_VERSION 0
  30 +#define QPDF_PATCH_VERSION 1
31 31  
32 32 #ifdef QPDF_FUTURE
33   -# define QPDF_VERSION "11.10.0+future"
  33 +# define QPDF_VERSION "11.10.1+future"
34 34 #else
35   -# define QPDF_VERSION "11.10.0"
  35 +# define QPDF_VERSION "11.10.1"
36 36 #endif
37 37  
38 38 /*
... ...
job.sums
1 1 # Generated by generate_auto_job
2   -CMakeLists.txt af74c05aea88512ef9a37a0708c2a03747a4ff23dc7919075c8d3b62b73aad79
  2 +CMakeLists.txt e08751e992a61aee8a2944c98c4a2c7574edc1138133f81b5a3340512da0f24c
3 3 generate_auto_job f64733b79dcee5a0e3e8ccc6976448e8ddf0e8b6529987a66a7d3ab2ebc10a86
4 4 include/qpdf/auto_job_c_att.hh 4c2b171ea00531db54720bf49a43f8b34481586ae7fb6cbf225099ee42bc5bb4
5 5 include/qpdf/auto_job_c_copy_att.hh 50609012bff14fd82f0649185940d617d05d530cdc522185c7f3920a561ccb42
... ... @@ -16,5 +16,5 @@ libqpdf/qpdf/auto_job_json_init.hh 344c2fb473f88fe829c93b1efe6c70a0e4796537b8eb3
16 16 libqpdf/qpdf/auto_job_schema.hh 6d3eef5137b8828eaa301a1b3cf75cb7bb812aa6e2d8301de865b42d238d7a7c
17 17 manual/_ext/qpdf.py 6add6321666031d55ed4aedf7c00e5662bba856dfcd66ccb526563bffefbb580
18 18 manual/cli.rst 67357688f9a52fafa9a4f231fe4ce74c3cd8977130da7501efe54439a1ee22d4
19   -manual/qpdf.1 cf5fc00789744c619f2af285fd715e5f85ced53f0126f8df5f97e27f920a9a7a
  19 +manual/qpdf.1 50102b93fd9afa8d605702ff2d19440dbed369c1c4660f14b71a4a162227c58e
20 20 manual/qpdf.1.in 436ecc85d45c4c9e2dbd1725fb7f0177fb627179469f114561adf3cb6cbb677b
... ...
manual/qpdf.1
... ... @@ -3,7 +3,7 @@
3 3 .\" Edits will be automatically overwritten if the build is
4 4 .\" run in maintainer mode.
5 5 .\"
6   -.TH QPDF "1" "" "qpdf version 11.10.0" "User Commands"
  6 +.TH QPDF "1" "" "qpdf version 11.10.1" "User Commands"
7 7 .SH NAME
8 8 qpdf \- PDF transformation software
9 9 .SH SYNOPSIS
... ...
manual/release-notes.rst
... ... @@ -29,6 +29,13 @@ Planned changes for future 12.x (subject to change):
29 29  
30 30 .. x.y.z: not yet released
31 31  
  32 +11.10.1: February 15, 2025
  33 + - Build fixes
  34 +
  35 + - Fix incorrect detection of zopfli
  36 +
  37 + - Recognize cygwin perl as Windows when running test suite
  38 +
32 39 11.10.0: February 8, 2025
33 40 - Bug fixes
34 41  
... ...