diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 287c86740..e8751bf2f 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.25 - 1.23.24 - 1.23.23 - 1.23.21 diff --git a/changes.txt b/changes.txt index 91e2b924b..68a2423bd 100644 --- a/changes.txt +++ b/changes.txt @@ -2,6 +2,20 @@ Change Log ========== +**Changes in version 1.23.25 (2024-02-20)** + +* Fixed issues: + + * **Fixed** `3182 `_: Pixmap.invert_irect argument type error + * **Fixed** `3186 `_: extractText() extracts broken text from pdf + * **Fixed** `3191 `_: Error on .find_tables() + +* Other: + + * When building, be able to specify python-config directly, with environment + variable `PIPCL_PYTHON_CONFIG`. + + **Changes in version 1.23.24 (2024-02-19)** * Fixed issues: diff --git a/docs/version.rst b/docs/version.rst index 1b0bbde06..ffedb9399 100644 --- a/docs/version.rst +++ b/docs/version.rst @@ -1,6 +1,6 @@ ---- -This documentation covers **PyMuPDF v1.23.24** features as of **2024-02-19 00:00:01**. +This documentation covers **PyMuPDF v1.23.25** features as of **2024-02-20 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 60b9eb613..fe56d0e93 100755 --- a/setup.py +++ b/setup.py @@ -1072,7 +1072,7 @@ def sdist(): # We generate different wheels depending on g_flavour. # -version = '1.23.24' +version = '1.23.25' version_b = '1.23.22' tag_python = None diff --git a/src/__init__.py b/src/__init__.py index 40d494218..cfd348a9d 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -21730,8 +21730,8 @@ def int_rc(text): return int(text) VersionFitz = "1.23.10" # MuPDF version. -VersionBind = "1.23.24" # PyMuPDF version. -VersionDate = "2024-02-19 00:00:01" +VersionBind = "1.23.25" # PyMuPDF version. +VersionDate = "2024-02-20 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 7c90abc4f..b50da3790 100644 --- a/src_classic/version.i +++ b/src_classic/version.i @@ -1,7 +1,7 @@ %pythoncode %{ VersionFitz = "1.23.10" # MuPDF version. -VersionBind = "1.23.24" # PyMuPDF version. -VersionDate = "2024-02-19 00:00:01" -version = (VersionBind, VersionFitz, "20240219000001") +VersionBind = "1.23.25" # PyMuPDF version. +VersionDate = "2024-02-20 00:00:01" +version = (VersionBind, VersionFitz, "20240220000001") pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')]) %}