Skip to content

Commit c17b0f2

Browse files
Update changelog, version and dates for new release.
1 parent ce287c3 commit c17b0f2

File tree

6 files changed

+21
-7
lines changed

6 files changed

+21
-7
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ body:
4747
label: PyMuPDF version
4848
options:
4949
-
50+
- 1.23.13
5051
- 1.23.12
5152
- 1.23.11
5253
- 1.23.10

changes.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@ Change Log
22
==========
33

44

5+
**Changes in version 1.23.13 (2024-01-15)**
6+
7+
* Bug fixes:
8+
9+
* **Fixed** `2979 <https://github.com/pymupdf/PyMuPDF/issues/2979>`_: list index out of range in to_pandas()
10+
* **Fixed** `3001 <https://github.com/pymupdf/PyMuPDF/issues/3001>`_: Calling find_tables() on one document alters the bounding boxes of a subsequent document
11+
12+
* Other:
13+
14+
* Fixed `Rect.height` and `Rect.width` to never return negative values.
15+
* Fixed `TextPage.extractIMGINFO()`'s returned `dictkey_yres` value.
16+
17+
518
**Changes in version 1.23.12 (2024-01-12)**
619

720
* * **Fixed** `3027 <https://github.com/pymupdf/PyMuPDF/issues/3027>`_: Page.get_text throws Attribute Error for 'parent'

docs/version.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
----
22

3-
This documentation covers **PyMuPDF v1.23.12** features as of **2024-01-12 00:00:01**.
3+
This documentation covers **PyMuPDF v1.23.13** features as of **2024-01-15 00:00:01**.
44

55
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**.
66

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1072,7 +1072,7 @@ def sdist():
10721072
# We generate different wheels depending on g_flavour.
10731073
#
10741074

1075-
version = '1.23.12'
1075+
version = '1.23.13'
10761076
version_b = '1.23.9'
10771077

10781078
tag_python = None

src/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21740,8 +21740,8 @@ def int_rc(text):
2174021740
return int(text)
2174121741

2174221742
VersionFitz = "1.23.9" # MuPDF version.
21743-
VersionBind = "1.23.12" # PyMuPDF version.
21744-
VersionDate = "2024-01-12 00:00:01"
21743+
VersionBind = "1.23.13" # PyMuPDF version.
21744+
VersionDate = "2024-01-15 00:00:01"
2174521745
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
2174621746
version = (VersionBind, VersionFitz, VersionDate2)
2174721747
pymupdf_version_tuple = tuple( [int_rc(i) for i in VersionBind.split('.')])

src_classic/version.i

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%pythoncode %{
22
VersionFitz = "1.23.9" # MuPDF version.
3-
VersionBind = "1.23.12" # PyMuPDF version.
4-
VersionDate = "2024-01-12 00:00:01"
5-
version = (VersionBind, VersionFitz, "20240112000001")
3+
VersionBind = "1.23.13" # PyMuPDF version.
4+
VersionDate = "2024-01-15 00:00:01"
5+
version = (VersionBind, VersionFitz, "20240115000001")
66
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])
77
%}

0 commit comments

Comments
 (0)