Skip to content

Commit ad4b871

Browse files
Update version numbers and dates for release.
1 parent 55703bf commit ad4b871

File tree

5 files changed

+25
-20
lines changed

5 files changed

+25
-20
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+2-16
Original file line numberDiff line numberDiff line change
@@ -47,24 +47,10 @@ body:
4747
label: PyMuPDF version
4848
options:
4949
-
50+
- 1.25.2
5051
- 1.25.1
5152
- 1.25.0
52-
- 1.24.14
53-
- 1.24.13
54-
- 1.24.12
55-
- 1.24.11
56-
- 1.24.10
57-
- 1.24.9
58-
- 1.24.8
59-
- 1.24.7
60-
- 1.24.6
61-
- 1.24.5
62-
- 1.24.4
63-
- 1.24.3
64-
- 1.24.2
65-
- 1.24.1
66-
- 1.24.0
67-
- 1.23.x or earlier
53+
- 1.24.x or earlier
6854
- Built from source
6955
description: |
7056
* For example from `pymupdf.VersionBind`.

changes.txt

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

44

5+
**Changes in version 1.25.2 (2025-01-17)**
6+
7+
* Fixed issues:
8+
9+
* **Fixed** `4055 <https://github.com/pymupdf/PyMuPDF/issues/4055>`_: "Yes" for all checkboxes does not work for all PDF rendering engines.
10+
* **Fixed** `4155 <https://github.com/pymupdf/PyMuPDF/issues/4155>`_: samples_mv is unsafe
11+
* **Fixed** `4186 <https://github.com/pymupdf/PyMuPDF/issues/4186>`_: Incorrect handling of JPEG with color space CMYK image extraction
12+
* **Fixed** `4225 <https://github.com/pymupdf/PyMuPDF/issues/4225>`_: pixmap.pil_save() fails due to colorspace definition
13+
* **Fixed** `4232 <https://github.com/pymupdf/PyMuPDF/issues/4232>`_: Incorrect Font style and Size
14+
15+
* Other:
16+
17+
* Use Python's built-in glyphname <> unicode conversion.
18+
* Improve speed of pixmap color inversion.
19+
* Add new `char_flags` member to span dictionary, for example allows detection of invisible text.
20+
* Detect image masks in TextPage output.
21+
* Added `Pixmap.pil_image()`.
22+
23+
524
**Changes in version 1.25.1 (2024-12-11)**
625

726
* Use MuPDF-1.25.2.

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.1** features as of **2024-12-11 00:00:01**.
3+
This documentation covers **PyMuPDF v1.25.2** features as of **2025-01-17 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
@@ -1157,7 +1157,7 @@ def sdist():
11571157
# We generate different wheels depending on PYMUPDF_SETUP_FLAVOUR.
11581158
#
11591159

1160-
version_p = '1.25.1'
1160+
version_p = '1.25.2'
11611161
version_b = '1.25.1'
11621162
version_mupdf = '1.25.2'
11631163

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.1"
376+
pymupdf_version = "1.25.2"
377377
mupdf_version = mupdf.FZ_VERSION
378-
pymupdf_date = "2024-12-11 00:00:01"
378+
pymupdf_date = "2025-01-17 00:00:01"
379379

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

0 commit comments

Comments
 (0)