Skip to content

Commit 05b0cfa

Browse files
Update version numbers and dates for release.
1 parent a02c17d commit 05b0cfa

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-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.25.4
5051
- 1.25.3
5152
- 1.25.2
5253
- 1.25.1

changes.txt

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

44

5-
**Changes in version 1.25.4 ()**
5+
**Changes in version 1.25.4 (2025-03-14)**
66

77
* Fixed issues:
88

9+
* **Fixed** `4079 <https://github.com/pymupdf/PyMuPDF/issues/4079>`_: Unexpected result for apply_redactions()
910
* **Fixed** `4224 <https://github.com/pymupdf/PyMuPDF/issues/4224>`_: MuPDF error: format error: negative code in 1d faxd
1011
* **Fixed** `4303 <https://github.com/pymupdf/PyMuPDF/issues/4303>`_: page.get_image_info() returns outdated cached results after replacing image
1112
* **Fixed** `4309 <https://github.com/pymupdf/PyMuPDF/issues/4309>`_: FzErrorFormat Error When Deleting First Page

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

scripts/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
--pymupdf-pypi <name>
102102
Do not build PyMuPDF, instead install with `pip install <name>`. For
103103
example allows testing of a specific version with `--pymupdf-pypi
104-
pymupdf==1.25.0`.
104+
pymupdf==x.y.z`.
105105
--system-site-packages 0|1
106106
If 1, use `--system-site-packages` when creating venv. Defaults is 0.
107107
--timeout <seconds>

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1242,15 +1242,15 @@ def sdist():
12421242
#
12431243

12441244
# PyMuPDF version.
1245-
version_p = '1.25.3'
1245+
version_p = '1.25.4'
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
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.
12501250
#
12511251
version_b = '1.25.3'
12521252

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

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

src/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -373,9 +373,9 @@ def _int_rc(text):
373373

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

380380
# Versions as tuples; useful when comparing versions.
381381
#

0 commit comments

Comments
 (0)