Skip to content

Commit a7f9269

Browse files
Update changelog, version numbers and dates for release 1.23.24.
1 parent 4c1ff3f commit a7f9269

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.24
5051
- 1.23.23
5152
- 1.23.21
5253
- 1.23.22

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.24 (2024-02-19)**
6+
7+
* Fixed issues:
8+
9+
* **Fixed** `3148 <https://github.com/pymupdf/PyMuPDF/issues/3148>`_: Table extraction - vertical text not handled correctly
10+
* **Fixed** `3179 <https://github.com/pymupdf/PyMuPDF/issues/3179>`_: Table Detection: Incorrect Separation of Vector Graphics Clusters
11+
* **Fixed** `3180 <https://github.com/pymupdf/PyMuPDF/issues/3180>`_: Cannot show optional content group: AttributeError: module 'fitz.mupdf' has no attribute 'pdf_array_push_drop'
12+
13+
* Other:
14+
15+
* Be able to test system install using `sudo pip install` instead of a venv.
16+
17+
518
**Changes in version 1.23.23 (2024-02-18)**
619

720
* Fixed issues:

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.23** features as of **2024-02-18 00:00:01**.
3+
This documentation covers **PyMuPDF v1.23.24** features as of **2024-02-19 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.23'
1075+
version = '1.23.24'
10761076
version_b = '1.23.22'
10771077

10781078
tag_python = None

src/__init__.py

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

2173121731
VersionFitz = "1.23.10" # MuPDF version.
21732-
VersionBind = "1.23.23" # PyMuPDF version.
21733-
VersionDate = "2024-02-18 00:00:01"
21732+
VersionBind = "1.23.24" # PyMuPDF version.
21733+
VersionDate = "2024-02-19 00:00:01"
2173421734
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
2173521735
version = (VersionBind, VersionFitz, VersionDate2)
2173621736
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.10" # MuPDF version.
3-
VersionBind = "1.23.23" # PyMuPDF version.
4-
VersionDate = "2024-02-18 00:00:01"
5-
version = (VersionBind, VersionFitz, "20240218000001")
3+
VersionBind = "1.23.24" # PyMuPDF version.
4+
VersionDate = "2024-02-19 00:00:01"
5+
version = (VersionBind, VersionFitz, "20240219000001")
66
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])
77
%}

0 commit comments

Comments
 (0)