From 2216b7bd509c0f230a0bcc1185285e17c51bc602 Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Mon, 22 Jul 2024 10:02:25 +0100 Subject: [PATCH] Update changelog, version numbers and release dates for release 1.24.8. --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + changes.txt | 16 ++++++++++++++++ docs/version.rst | 2 +- setup.py | 2 +- src/__init__.py | 4 ++-- 5 files changed, 21 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 952bbd6a1..452699694 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.24.8 - 1.24.7 - 1.24.6 - 1.24.5 diff --git a/changes.txt b/changes.txt index d20033af3..381165a66 100644 --- a/changes.txt +++ b/changes.txt @@ -2,6 +2,22 @@ Change Log ========== +**Changes in version 1.24.8 (2024-07-22)** + +* Fixed issues: + + * **Fixed** `3636 `_: API documentation for the open function is not obvious to find. + * **Fixed** `3654 `_: docx parsing was broken in 1.24.7 + * **Fixed** `3677 `_: Unable to extract subset font name using the newer versions of PyMuPDF : 1.24.6 and 1.24.7. + * **Fixed** `3687 `_: Page.get_text results in AssertionError for epub files + +Other: + + * Fixed various spelling mistakes spotted by codespell. + * Improved how we modify MuPDF's default configuration on Windows. + * Make text search to work with ligatures. + + **Changes in version 1.24.7 (2024-06-26)** * Fixed issues: diff --git a/docs/version.rst b/docs/version.rst index 366c713f6..e2de2149f 100644 --- a/docs/version.rst +++ b/docs/version.rst @@ -1,6 +1,6 @@ ---- -This documentation covers **PyMuPDF v1.24.7** features as of **2024-06-26 00:00:01**. +This documentation covers **PyMuPDF v1.24.8** features as of **2024-07-22 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 29f8de216..20d870407 100755 --- a/setup.py +++ b/setup.py @@ -1162,7 +1162,7 @@ def sdist(): # We generate different wheels depending on PYMUPDF_SETUP_FLAVOUR. # -version_p = '1.24.7' +version_p = '1.24.8' version_b = '1.24.6' if os.path.exists(f'{g_root}/{g_pymupdfb_sdist_marker}'): diff --git a/src/__init__.py b/src/__init__.py index e89223019..0e826c54c 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -208,9 +208,9 @@ def _int_rc(text): # Basic version information. # -pymupdf_version = "1.24.7" +pymupdf_version = "1.24.8" mupdf_version = mupdf.FZ_VERSION -pymupdf_date = "2024-06-26 00:00:01" +pymupdf_date = "2024-07-22 00:00:01" # Versions as tuples; useful when comparing versions. #