File tree 6 files changed +10
-8
lines changed
6 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 47
47
label : PyMuPDF version
48
48
options :
49
49
-
50
+ - 1.25.4
50
51
- 1.25.3
51
52
- 1.25.2
52
53
- 1.25.1
Original file line number Diff line number Diff line change @@ -2,10 +2,11 @@ Change Log
2
2
==========
3
3
4
4
5
- **Changes in version 1.25.4 ()**
5
+ **Changes in version 1.25.4 (2025-03-14 )**
6
6
7
7
* Fixed issues:
8
8
9
+ * **Fixed** `4079 <https://github.com/pymupdf/PyMuPDF/issues/4079>`_: Unexpected result for apply_redactions()
9
10
* **Fixed** `4224 <https://github.com/pymupdf/PyMuPDF/issues/4224>`_: MuPDF error: format error: negative code in 1d faxd
10
11
* **Fixed** `4303 <https://github.com/pymupdf/PyMuPDF/issues/4303>`_: page.get_image_info() returns outdated cached results after replacing image
11
12
* **Fixed** `4309 <https://github.com/pymupdf/PyMuPDF/issues/4309>`_: FzErrorFormat Error When Deleting First Page
Original file line number Diff line number Diff line change 1
1
----
2
2
3
- This documentation covers **PyMuPDF v1.25.3 ** features as of **2025-02-06 00:00:01 **.
3
+ This documentation covers **PyMuPDF v1.25.4 ** features as of **2025-03-14 00:00:01 **.
4
4
5
5
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 **.
6
6
Original file line number Diff line number Diff line change 101
101
--pymupdf-pypi <name>
102
102
Do not build PyMuPDF, instead install with `pip install <name>`. For
103
103
example allows testing of a specific version with `--pymupdf-pypi
104
- pymupdf==1.25.0 `.
104
+ pymupdf==x.y.z `.
105
105
--system-site-packages 0|1
106
106
If 1, use `--system-site-packages` when creating venv. Defaults is 0.
107
107
--timeout <seconds>
Original file line number Diff line number Diff line change @@ -1242,15 +1242,15 @@ def sdist():
1242
1242
#
1243
1243
1244
1244
# PyMuPDF version.
1245
- version_p = '1.25.3 '
1245
+ version_p = '1.25.4 '
1246
1246
1247
1247
# PyMuPDFb version. This is the PyMuPDF version whose PyMuPDFb wheels we will
1248
1248
# (re)use if generating separate PyMuPDFb wheels. Though as of PyMuPDF-1.24.11
1249
- # (2024-10-03) we no longer use PyMuPDFb wheels.
1249
+ # (2024-10-03) we no longer use PyMuPDFb wheels so this is actually unused .
1250
1250
#
1251
1251
version_b = '1.25.3'
1252
1252
1253
- version_mupdf = '1.25.4 '
1253
+ version_mupdf = '1.25.5 '
1254
1254
1255
1255
if os .path .exists (f'{ g_root } /{ g_pymupdfb_sdist_marker } ' ):
1256
1256
Original file line number Diff line number Diff line change @@ -373,9 +373,9 @@ def _int_rc(text):
373
373
374
374
# Basic version information.
375
375
#
376
- pymupdf_version = "1.25.3 "
376
+ pymupdf_version = "1.25.4 "
377
377
mupdf_version = mupdf.FZ_VERSION
378
- pymupdf_date = "2025-02-06 00:00:01"
378
+ pymupdf_date = "2025-03-14 00:00:01"
379
379
380
380
# Versions as tuples; useful when comparing versions.
381
381
#
You can’t perform that action at this time.
0 commit comments