Skip to content

Commit

Permalink
Update changelog, version and dates for new release.
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-smith-artifex-com committed Jan 15, 2024
1 parent ce287c3 commit c17b0f2
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Expand Up @@ -47,6 +47,7 @@ body:
label: PyMuPDF version
options:
-
- 1.23.13
- 1.23.12
- 1.23.11
- 1.23.10
Expand Down
13 changes: 13 additions & 0 deletions changes.txt
Expand Up @@ -2,6 +2,19 @@ Change Log
==========


**Changes in version 1.23.13 (2024-01-15)**

* Bug fixes:

* **Fixed** `2979 <https://github.com/pymupdf/PyMuPDF/issues/2979>`_: list index out of range in to_pandas()
* **Fixed** `3001 <https://github.com/pymupdf/PyMuPDF/issues/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 <https://github.com/pymupdf/PyMuPDF/issues/3027>`_: Page.get_text throws Attribute Error for 'parent'
Expand Down
2 changes: 1 addition & 1 deletion 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**.

2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/__init__.py
Expand Up @@ -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('.')])
Expand Down
6 changes: 3 additions & 3 deletions 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('.')])
%}

0 comments on commit c17b0f2

Please sign in to comment.