summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2023-05-13 22:26:32 +0200
committerJay Berkenbilt <ejb@ql.org>2023-05-20 20:52:19 +0200
commit3f2b61ae000041bf158f63fb5ddf4d90c193fb60 (patch)
treec6253b2b389a59effeb24bb2c7beffacc8cfaeff
parenta85635b839755765713eb27d767f42b357056b2e (diff)
downloadqpdf-3f2b61ae000041bf158f63fb5ddf4d90c193fb60.tar.zst
Add release notes and ChangeLog for previous PR
-rw-r--r--ChangeLog8
-rw-r--r--manual/release-notes.rst9
2 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4c8ddfee..8a0f73a2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2023-04-02 Jay Berkenbilt <ejb@ql.org>
+ * Allow QPDFJob's workflow to be split into a reading phase and a
+ writing phase to allow the caller to operate on the QPDF object
+ before it is written. This adds methods QPDFJob::createQPDF and
+ QPDFJob::writeQPDF and corresponding C API functions
+ qpdfjob_create_qpdf and qpdfjob_write_qpdf. Thanks to M. Holger
+ for the contrbution.
+
2023-03-18 Jay Berkenbilt <ejb@ql.org>
* Enhance --optimize-images to support images nested inside of
diff --git a/manual/release-notes.rst b/manual/release-notes.rst
index 39b40ab4..3e642092 100644
--- a/manual/release-notes.rst
+++ b/manual/release-notes.rst
@@ -14,6 +14,15 @@ For a detailed list of changes, please see the file
- The :qpdf:ref:`--optimize-images` option now optimizes images
inside of form XObjects.
+ - Library Enhancements
+
+ - Allow QPDFJob's workflow to be split into a reading phase and a
+ writing phase to allow the caller to operate on the ``QPDF``
+ object before it is written. This adds methods
+ ``QPDFJob::createQPDF`` and ``QPDFJob::writeQPDF`` and
+ corresponding C API functions ``qpdfjob_create_qpdf`` and
+ ``qpdfjob_write_qpdf``.
+
11.3.0: February 25, 2023
- CLI Enhancements