diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 75d94a094..bc0ddbe7f 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.19 - 1.23.18 - 1.23.17 - 1.23.16 diff --git a/changes.txt b/changes.txt index 92e794bd2..59ed1af1b 100644 --- a/changes.txt +++ b/changes.txt @@ -2,6 +2,24 @@ Change Log ========== +**Changes in version 1.23.19 (2024-01-25)** + +* Bug fixes: + + * **Fixed** `3087 `_: Exception in insert_image with mask specified + * **Fixed** `3094 `_: TypeError: '<' not supported between instances of 'FzLocation' and 'int' in doc.delete_pages + +* Other: + + * When finding tables: + + * Allow addition of user-defined "virtual" vector graphics when finding tables. + * Confirm that the enveloping bboxes of vector graphics are inside the clip rectangle. + * Avoid slow finding of rectangle intersections. + + * Added `Font.bbox` property. + + **Changes in version 1.23.18 (2024-01-23)** * Bug fixes: diff --git a/docs/version.rst b/docs/version.rst index c9617bc82..1d8130c9e 100644 --- a/docs/version.rst +++ b/docs/version.rst @@ -1,6 +1,6 @@ ---- -This documentation covers **PyMuPDF v1.23.18** features as of **2024-01-23 00:00:01**. +This documentation covers **PyMuPDF v1.23.19** features as of **2024-01-25 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 1e5832d42..abdc08851 100755 --- a/setup.py +++ b/setup.py @@ -1072,7 +1072,7 @@ def sdist(): # We generate different wheels depending on g_flavour. # -version = '1.23.18' +version = '1.23.19' version_b = '1.23.9' tag_python = None diff --git a/src/__init__.py b/src/__init__.py index a17e0a7d5..e4c3d938e 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -21798,8 +21798,8 @@ def int_rc(text): return int(text) VersionFitz = "1.23.9" # MuPDF version. -VersionBind = "1.23.18" # PyMuPDF version. -VersionDate = "2024-01-23 00:00:01" +VersionBind = "1.23.19" # PyMuPDF version. +VersionDate = "2024-01-25 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 e9e494239..6ca5949c4 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.18" # PyMuPDF version. -VersionDate = "2024-01-23 00:00:01" -version = (VersionBind, VersionFitz, "20240123000001") +VersionBind = "1.23.19" # PyMuPDF version. +VersionDate = "2024-01-25 00:00:01" +version = (VersionBind, VersionFitz, "20240125000001") pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')]) %}