Skip to content

Commit 33fe7a9

Browse files
julian-smith-artifex-comJorjMcKie
authored andcommitted
Update versions and changelog etc for next release.
1 parent ab36622 commit 33fe7a9

File tree

5 files changed

+22
-4
lines changed

5 files changed

+22
-4
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.25.5
5051
- 1.25.4
5152
- 1.25.3
5253
- 1.25.2

changes.txt

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

44

5+
**Changes in version 1.25.5 ()**
6+
7+
* Use MuPDF-1.25.6.
8+
9+
* Fixed issues:
10+
11+
* **Fixed** `4372 <https://github.com/pymupdf/PyMuPDF/issues/4372>`_: Text insertion fails due to missing /Resources object
12+
* **Fixed** `4400 <https://github.com/pymupdf/PyMuPDF/issues/4400>`_: Infinite loop in fill_textbox
13+
* **Fixed** `4403 <https://github.com/pymupdf/PyMuPDF/issues/4403>`_: Unable to get_text() - layer/clip nesting too deep
14+
15+
* Other:
16+
17+
* Fixed MuPDF SEGV on MacOS with particular fonts.
18+
* Fixed `Annot.get_textpage()`'s `clip` arg.
19+
* Fixed Python-3.14 (pre-release) build error.
20+
21+
522
**Changes in version 1.25.4 (2025-03-14)**
623

724
* Use MuPDF-1.25.5.

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.25.4** features as of **2025-03-14 00:00:01**.
3+
This documentation covers **PyMuPDF v1.25.5** features as of **2025-03-14 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1242,15 +1242,15 @@ def sdist():
12421242
#
12431243

12441244
# PyMuPDF version.
1245-
version_p = '1.25.4'
1245+
version_p = '1.25.5'
12461246

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

1253-
version_mupdf = '1.25.5'
1253+
version_mupdf = '1.25.6'
12541254

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

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ def _int_rc(text):
373373

374374
# Basic version information.
375375
#
376-
pymupdf_version = "1.25.4"
376+
pymupdf_version = "1.25.5"
377377
mupdf_version = mupdf.FZ_VERSION
378378
pymupdf_date = "2025-03-14 00:00:01"
379379

0 commit comments

Comments
 (0)