From c1c556478ecd9f410f94ce12536bf1752ade5598 Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Wed, 26 Jun 2024 11:14:35 +0100 Subject: [PATCH] Update changelog, version numbers and release dates for release 1.24.7. --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + changes.txt | 8 ++++++++ docs/version.rst | 2 +- setup.py | 2 +- src/__init__.py | 4 ++-- 5 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 8b37cd4b3..952bbd6a1 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.7 - 1.24.6 - 1.24.5 - 1.24.4 diff --git a/changes.txt b/changes.txt index 07de3993d..d20033af3 100644 --- a/changes.txt +++ b/changes.txt @@ -2,6 +2,14 @@ Change Log ========== +**Changes in version 1.24.7 (2024-06-26)** + +* Fixed issues: + + * **Fixed** `3615 `_: Document.pagemode or Document.pagelayout crashes for epub files + * **Fixed** `3616 `_: not last version reported + + **Changes in version 1.24.6 (2024-06-25)** * Fixed issues: diff --git a/docs/version.rst b/docs/version.rst index f31b4e876..366c713f6 100644 --- a/docs/version.rst +++ b/docs/version.rst @@ -1,6 +1,6 @@ ---- -This documentation covers **PyMuPDF v1.24.6** features as of **2024-06-25 00:00:01**. +This documentation covers **PyMuPDF v1.24.7** features as of **2024-06-26 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 364b5151a..dacf53733 100755 --- a/setup.py +++ b/setup.py @@ -1128,7 +1128,7 @@ def sdist(): # We generate different wheels depending on g_flavour. # -version = '1.24.6' +version = '1.24.7' 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 a4ef6443a..35d25058d 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -201,9 +201,9 @@ def _int_rc(text): # Basic version information. # -pymupdf_version = "1.24.6" +pymupdf_version = "1.24.7" mupdf_version = mupdf.FZ_VERSION -pymupdf_date = "2024-06-25 00:00:01" +pymupdf_date = "2024-06-26 00:00:01" # Versions as tuples; useful when comparing versions. #