Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ body:
attributes:
label: PyMuPDF version
options:
- 1.26.3
- 1.26.1
- 1.26.0
- 1.25.x or earlier
Expand Down
7 changes: 6 additions & 1 deletion changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Change Log
==========


**Changes in version 1.26.2**
**Changes in version 1.26.3**

* Use MuPDF-1.26.3.

Expand All @@ -19,6 +19,11 @@ Change Log
* Added table cell markdown support.


**Changes in version 1.26.2**

[Skipped.]


**Changes in version 1.26.1 (2025-06-11)**

* Use MuPDF-1.26.2.
Expand Down
2 changes: 1 addition & 1 deletion docs/version.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
----

This documentation covers **PyMuPDF v1.26.1**.
This documentation covers **PyMuPDF v1.26.3**.

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|.

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1246,15 +1246,15 @@ def sdist():
#

# PyMuPDF version.
version_p = '1.26.2'
version_p = '1.26.3'

version_mupdf = '1.26.3'

# PyMuPDFb version. This is the PyMuPDF version whose PyMuPDFb wheels we will
# (re)use if generating separate PyMuPDFb wheels. Though as of PyMuPDF-1.24.11
# (2024-10-03) we no longer use PyMuPDFb wheels so this is actually unused.
#
version_b = '1.26.2'
version_b = '1.26.3'

if os.path.exists(f'{g_root}/{g_pymupdfb_sdist_marker}'):

Expand Down
2 changes: 1 addition & 1 deletion src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def _int_rc(text):

# Basic version information.
#
pymupdf_version = "1.26.1"
pymupdf_version = "1.26.3"
mupdf_version = mupdf.FZ_VERSION
pymupdf_date = None

Expand Down