From c17b0f2c9a9e5002058673d0d87700522b2c2adc Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Mon, 15 Jan 2024 10:30:49 +0000 Subject: [PATCH] Update changelog, version and dates for new release. --- .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 36223ddd9..e23639da9 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.13 - 1.23.12 - 1.23.11 - 1.23.10 diff --git a/changes.txt b/changes.txt index e98da24a4..4b952c52b 100644 --- a/changes.txt +++ b/changes.txt @@ -2,6 +2,19 @@ Change Log ========== +**Changes in version 1.23.13 (2024-01-15)** + +* Bug fixes: + + * **Fixed** `2979 `_: list index out of range in to_pandas() + * **Fixed** `3001 `_: Calling find_tables() on one document alters the bounding boxes of a subsequent document + +* Other: + + * Fixed `Rect.height` and `Rect.width` to never return negative values. + * Fixed `TextPage.extractIMGINFO()`'s returned `dictkey_yres` value. + + **Changes in version 1.23.12 (2024-01-12)** * * **Fixed** `3027 `_: Page.get_text throws Attribute Error for 'parent' diff --git a/docs/version.rst b/docs/version.rst index a13620c47..0a4134552 100644 --- a/docs/version.rst +++ b/docs/version.rst @@ -1,6 +1,6 @@ ---- -This documentation covers **PyMuPDF v1.23.12** features as of **2024-01-12 00:00:01**. +This documentation covers **PyMuPDF v1.23.13** features as of **2024-01-15 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 a4e8ddb4e..01a0dfc25 100755 --- a/setup.py +++ b/setup.py @@ -1072,7 +1072,7 @@ def sdist(): # We generate different wheels depending on g_flavour. # -version = '1.23.12' +version = '1.23.13' version_b = '1.23.9' tag_python = None diff --git a/src/__init__.py b/src/__init__.py index 4fc5d6ba1..7d05c5abc 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -21740,8 +21740,8 @@ def int_rc(text): return int(text) VersionFitz = "1.23.9" # MuPDF version. -VersionBind = "1.23.12" # PyMuPDF version. -VersionDate = "2024-01-12 00:00:01" +VersionBind = "1.23.13" # PyMuPDF version. +VersionDate = "2024-01-15 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 788b3315a..e7a30a54c 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.12" # PyMuPDF version. -VersionDate = "2024-01-12 00:00:01" -version = (VersionBind, VersionFitz, "20240112000001") +VersionBind = "1.23.13" # PyMuPDF version. +VersionDate = "2024-01-15 00:00:01" +version = (VersionBind, VersionFitz, "20240115000001") pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')]) %}