From e97b5bb72363667bb94e671d67a65db14477283b Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Thu, 18 Jan 2024 15:46:54 +0000 Subject: [PATCH] Update changelog, versions and dates for release of 1.23.16. --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + changes.txt | 13 +++++++++++++ docs/version.rst | 2 +- setup.py | 2 +- src/__init__.py | 4 ++-- src_classic/version.i | 6 +++--- 6 files changed, 21 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index b283c7a79..c8efd0e82 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -47,6 +47,7 @@ body: label: PyMuPDF version options: - + - 1.23.16 - 1.23.15 - 1.23.14 - 1.23.13 diff --git a/changes.txt b/changes.txt index d1fa16814..8f62f3686 100644 --- a/changes.txt +++ b/changes.txt @@ -2,6 +2,19 @@ Change Log ========== +**Changes in version 1.23.16 (2024-01-18)** + +* Bug fixes: + + * **Fixed** `3058 `_: Pixmap created from CMYK JPEG delivers RGB format + +* Other: + + * In table detection strategy "lines_strict", exclude fill-only vector graphics. + * Fixed sysinstall test failure. + * In documentation, update feature matrix with item about text writing. + + **Changes in version 1.23.15 (2024-01-16)** * Bug fixes: diff --git a/docs/version.rst b/docs/version.rst index cf0e2f18e..dac54bcd9 100644 --- a/docs/version.rst +++ b/docs/version.rst @@ -1,6 +1,6 @@ ---- -This documentation covers **PyMuPDF v1.23.15** features as of **2024-01-16 00:00:01**. +This documentation covers **PyMuPDF v1.23.16** features as of **2024-01-18 00:00:01**. The major and minor versions of **PyMuPDF** and **MuPDF** will always be the same. Only the third qualifier (patch level) may deviate from that of **MuPDF**. diff --git a/setup.py b/setup.py index d4c6978cb..c1118d0e0 100755 --- a/setup.py +++ b/setup.py @@ -1072,7 +1072,7 @@ def sdist(): # We generate different wheels depending on g_flavour. # -version = '1.23.15' +version = '1.23.16' version_b = '1.23.9' tag_python = None diff --git a/src/__init__.py b/src/__init__.py index cc367ab04..96f5da64c 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -21756,8 +21756,8 @@ def int_rc(text): return int(text) VersionFitz = "1.23.9" # MuPDF version. -VersionBind = "1.23.15" # PyMuPDF version. -VersionDate = "2024-01-16 00:00:01" +VersionBind = "1.23.16" # PyMuPDF version. +VersionDate = "2024-01-18 00:00:01" VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '') version = (VersionBind, VersionFitz, VersionDate2) pymupdf_version_tuple = tuple( [int_rc(i) for i in VersionBind.split('.')]) diff --git a/src_classic/version.i b/src_classic/version.i index df7dfdc2a..f9e466b81 100644 --- a/src_classic/version.i +++ b/src_classic/version.i @@ -1,7 +1,7 @@ %pythoncode %{ VersionFitz = "1.23.9" # MuPDF version. -VersionBind = "1.23.15" # PyMuPDF version. -VersionDate = "2024-01-16 00:00:01" -version = (VersionBind, VersionFitz, "20240116000001") +VersionBind = "1.23.16" # PyMuPDF version. +VersionDate = "2024-01-18 00:00:01" +version = (VersionBind, VersionFitz, "20240118000001") pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')]) %}