Skip to content

Commit 2be27b2

Browse files
Update changelog, version numbers and dates for release of 1.24.12.
1 parent 73433bc commit 2be27b2

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-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.12
5051
- 1.24.11
5152
- 1.24.10
5253
- 1.24.9

changes.txt

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

44

5+
**Changes in version 1.24.12 (2024-10-21)**
6+
7+
* Fixed issues:
8+
9+
* **Fixed** `3914 <https://github.com/pymupdf/PyMuPDF/issues/3914>`_: Ability to print MuPDF errors to logging instead of stdout
10+
* **Fixed** `3916 <https://github.com/pymupdf/PyMuPDF/issues/3916>`_: insert_htmlbox error: int too large to convert to float
11+
* **Fixed** `3950 <https://github.com/pymupdf/PyMuPDF/issues/3950>`_: Unable to consistently extract field labels from PDFs
12+
13+
* Supported Python versions are now 3.8-3.13.
14+
15+
* Dropped support for Python-3.7 because end-of-life.
16+
* Added support for Python-3.13 because now released.
17+
* See: https://devguide.python.org/versions/
18+
19+
520
**Changes in version 1.24.11 (2024-10-03)**
621

722
* Use MuPDF-1.24.10.

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.11** features as of **2024-10-03 00:00:01**.
3+
This documentation covers **PyMuPDF v1.24.12** features as of **2024-10-21 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
@@ -1132,7 +1132,7 @@ def sdist():
11321132
# We generate different wheels depending on PYMUPDF_SETUP_FLAVOUR.
11331133
#
11341134

1135-
version_p = '1.24.11'
1135+
version_p = '1.24.12'
11361136
version_b = '1.24.10'
11371137

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

src/__init__.py

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

372372
# Basic version information.
373373
#
374-
pymupdf_version = "1.24.11"
374+
pymupdf_version = "1.24.12"
375375
mupdf_version = mupdf.FZ_VERSION
376-
pymupdf_date = "2024-10-03 00:00:01"
376+
pymupdf_date = "2024-10-21 00:00:01"
377377

378378
# Versions as tuples; useful when comparing versions.
379379
#

0 commit comments

Comments
 (0)