From b627b592ca530c3f8d7f15adf5860013341953a3 Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Mon, 2 Sep 2024 12:31:54 +0100 Subject: [PATCH] Updated version numbers and dates for release 1.24.10. --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + docs/version.rst | 2 +- src/__init__.py | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index b6d40e344..f6400a385 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.10 - 1.24.9 - 1.24.8 - 1.24.7 diff --git a/docs/version.rst b/docs/version.rst index 30cdd67e8..662f88307 100644 --- a/docs/version.rst +++ b/docs/version.rst @@ -1,6 +1,6 @@ ---- -This documentation covers **PyMuPDF v1.24.9** features as of **2024-07-24 00:00:01**. +This documentation covers **PyMuPDF v1.24.10** features as of **2024-09-02 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/src/__init__.py b/src/__init__.py index 08131df2a..2ee9bd6ff 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -209,9 +209,9 @@ def _int_rc(text): # Basic version information. # -pymupdf_version = "1.24.9" +pymupdf_version = "1.24.10" mupdf_version = mupdf.FZ_VERSION -pymupdf_date = "2024-07-24 00:00:01" +pymupdf_date = "2024-09-02 00:00:01" # Versions as tuples; useful when comparing versions. #