From 214616dbf127010cc26c57c265643b84a0d738d5 Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Tue, 29 Oct 2024 13:21:40 +0000 Subject: [PATCH] Update changelog, version numbers and dates for release of 1.24.13. --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + changes.txt | 10 ++++++++++ docs/version.rst | 2 +- setup.py | 2 +- src/__init__.py | 4 ++-- 5 files changed, 15 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index d256a370c..4706a1961 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.13 - 1.24.12 - 1.24.11 - 1.24.10 diff --git a/changes.txt b/changes.txt index 66f325118..06c761401 100644 --- a/changes.txt +++ b/changes.txt @@ -2,6 +2,16 @@ Change Log ========== +**Changes in version 1.24.13 (2024-10-29)** + +* Fixed issues: + + * **Fixed** `3848 `_: Piximap program crash + * **Fixed** `3950 `_: Unable to consistently extract field labels from PDFs + * **Fixed** `3981 `_: PyMuPDF 1.24.12 with pyinstaller throws error. + * **Fixed** `3994 `_: pix.color_topusage raise Segmentation fault (core dumped) + + **Changes in version 1.24.12 (2024-10-21)** * Fixed issues: diff --git a/docs/version.rst b/docs/version.rst index ade0f987e..00193a3b0 100644 --- a/docs/version.rst +++ b/docs/version.rst @@ -1,6 +1,6 @@ ---- -This documentation covers **PyMuPDF v1.24.12** features as of **2024-10-21 00:00:01**. +This documentation covers **PyMuPDF v1.24.13** features as of **2024-10-29 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 a0056433b..cfcdbec53 100755 --- a/setup.py +++ b/setup.py @@ -1137,7 +1137,7 @@ def sdist(): # We generate different wheels depending on PYMUPDF_SETUP_FLAVOUR. # -version_p = '1.24.12' +version_p = '1.24.13' version_b = '1.24.10' if os.path.exists(f'{g_root}/{g_pymupdfb_sdist_marker}'): diff --git a/src/__init__.py b/src/__init__.py index 3002f34ef..f1f2ab989 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -373,9 +373,9 @@ def _int_rc(text): # Basic version information. # -pymupdf_version = "1.24.12" +pymupdf_version = "1.24.13" mupdf_version = mupdf.FZ_VERSION -pymupdf_date = "2024-10-21 00:00:01" +pymupdf_date = "2024-10-29 00:00:01" # Versions as tuples; useful when comparing versions. #