Skip to content

Commit a868c0a

Browse files
Update changelog, version numbers and dates for release 1.23.26.
1 parent 9552f5e commit a868c0a

File tree

6 files changed

+21
-8
lines changed

6 files changed

+21
-8
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ body:
4747
label: PyMuPDF version
4848
options:
4949
-
50+
- 1.23.26
5051
- 1.23.25
5152
- 1.23.24
5253
- 1.23.23

changes.txt

+13-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,25 @@ Change Log
22
==========
33

44

5-
**Changes in version 1.23. ()**
5+
**Changes in version 1.23.26 (2024-02-29)**
66

77
* Fixed issues:
88

9+
* **Fixed** `3199 <https://github.com/pymupdf/PyMuPDF/issues/3199>`_: Add entry_points to setuptools configuration to provide command-line console scripts
10+
* **Fixed** `3209 <https://github.com/pymupdf/PyMuPDF/issues/3209>`_: Empty vertices in ink annotation
11+
912
* Other:
1013

14+
* Improvements to table detection:
15+
16+
* Improved check for empty tables, fixes bugs when determining table headers.
17+
* Improved computation of enveloping vector graphic rectangles.
18+
* Ignore more meaningless "pseudo" tables
19+
1120
* Install command-line 'pymupdf' command that runs fitz/__main__.py.
21+
* Don't overwrite MuPDF's config.h when building on non-Windows.
22+
* Fix `Story` constructor's `archive` arg to match docs - now accepts a single `Archive` constructor arg.
23+
* Do not include MuPDF source in sdist; will be downloaded automatically when building.
1224

1325

1426
**Changes in version 1.23.25 (2024-02-20)**

docs/version.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
----
22

3-
This documentation covers **PyMuPDF v1.23.25** features as of **2024-02-20 00:00:01**.
3+
This documentation covers **PyMuPDF v1.23.26** features as of **2024-02-29 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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1094,7 +1094,7 @@ def sdist():
10941094
# We generate different wheels depending on g_flavour.
10951095
#
10961096

1097-
version = '1.23.25'
1097+
version = '1.23.26'
10981098
version_b = '1.23.22'
10991099

11001100
tag_python = None

src/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21730,8 +21730,8 @@ def int_rc(text):
2173021730
return int(text)
2173121731

2173221732
VersionFitz = "1.23.10" # MuPDF version.
21733-
VersionBind = "1.23.25" # PyMuPDF version.
21734-
VersionDate = "2024-02-20 00:00:01"
21733+
VersionBind = "1.23.26" # PyMuPDF version.
21734+
VersionDate = "2024-02-29 00:00:01"
2173521735
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
2173621736
version = (VersionBind, VersionFitz, VersionDate2)
2173721737
pymupdf_version_tuple = tuple( [int_rc(i) for i in VersionBind.split('.')])

src_classic/version.i

+3-3
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.25" # PyMuPDF version.
4-
VersionDate = "2024-02-20 00:00:01"
5-
version = (VersionBind, VersionFitz, "20240220000001")
3+
VersionBind = "1.23.26" # PyMuPDF version.
4+
VersionDate = "2024-02-29 00:00:01"
5+
version = (VersionBind, VersionFitz, "20240229000001")
66
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])
77
%}

0 commit comments

Comments
 (0)