Skip to content

Commit eeaa3f1

Browse files
Update version numbers and dates for release of 1.24.11.
1 parent 758a77c commit eeaa3f1

File tree

5 files changed

+33
-4
lines changed

5 files changed

+33
-4
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.24.11
5051
- 1.24.10
5152
- 1.24.9
5253
- 1.24.8

changes.txt

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

44

5+
**Changes in version 1.24.11 (2024-10-03)**
6+
7+
* Use MuPDF-1.24.10.
8+
9+
* Fixed issues:
10+
11+
* **Fixed** `3624 <https://github.com/pymupdf/PyMuPDF/issues/3624>`_: Pdf file transform to image have a black block
12+
* **Fixed** `3859 <https://github.com/pymupdf/PyMuPDF/issues/3859>`_: doc.need_appearances() fails with "AttributeError: module 'pymupdf.mupdf' has no attribute 'PDF_TRUE' "
13+
* **Fixed** `3863 <https://github.com/pymupdf/PyMuPDF/issues/3863>`_: apply_redactions() does not work as expected
14+
* **Fixed** `3905 <https://github.com/pymupdf/PyMuPDF/issues/3905>`_: open stream can raise a FzErrorFormat error instead of FileDataError
15+
16+
* Wheels now use the Python Stable ABI:
17+
18+
* There is one PyMuPDF wheel for each platform.
19+
* Each wheel works with all supported Python versions.
20+
* Each wheel is built using the oldest supported Python version (currently 3.8).
21+
* There is no PyMuPDFb wheel.
22+
23+
* Other:
24+
25+
* Improvements to get_text_words() with sort=True.
26+
* Tests now always get the latest versions of required Python packages.
27+
* Removed dependency on setuptools.
28+
* Added item to PyMuPDF-1.24.10 changes below - fix of #3630.
29+
30+
531
**Changes in version 1.24.10 (2024-09-02)**
632

733
* Use MuPDF-1.24.9.
@@ -23,6 +49,8 @@ Change Log
2349
* **Fixed** `3789 <https://github.com/pymupdf/PyMuPDF/issues/3789>`_: ValueError: not enough values to unpack (expected 3, got 2) is thrown when call insert_pdf
2450
* **Fixed** `3820 <https://github.com/pymupdf/PyMuPDF/issues/3820>`_: class improves namedDest handling
2551

52+
* **Fixed** `3630 <https://github.com/pymupdf/PyMuPDF/issues/3630>`_: page.apply_redactions gives unwanted black rectangle
53+
2654
* Other:
2755

2856
* Object streams and linearization cannot be used together; attempting to do

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.24.10** features as of **2024-09-02 00:00:01**.
3+
This documentation covers **PyMuPDF v1.24.11** features as of **2024-10-03 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
@@ -1130,7 +1130,7 @@ def sdist():
11301130
# We generate different wheels depending on PYMUPDF_SETUP_FLAVOUR.
11311131
#
11321132

1133-
version_p = '1.24.10'
1133+
version_p = '1.24.11'
11341134
version_b = '1.24.10'
11351135

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

src/__init__.py

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

210210
# Basic version information.
211211
#
212-
pymupdf_version = "1.24.10"
212+
pymupdf_version = "1.24.11"
213213
mupdf_version = mupdf.FZ_VERSION
214-
pymupdf_date = "2024-09-02 00:00:01"
214+
pymupdf_date = "2024-10-03 00:00:01"
215215

216216
# Versions as tuples; useful when comparing versions.
217217
#

0 commit comments

Comments
 (0)