Skip to content

Commit 214616d

Browse files
Update changelog, version numbers and dates for release of 1.24.13.
1 parent 033314d commit 214616d

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-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.13
5051
- 1.24.12
5152
- 1.24.11
5253
- 1.24.10

changes.txt

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

44

5+
**Changes in version 1.24.13 (2024-10-29)**
6+
7+
* Fixed issues:
8+
9+
* **Fixed** `3848 <https://github.com/pymupdf/PyMuPDF/issues/3848>`_: Piximap program crash
10+
* **Fixed** `3950 <https://github.com/pymupdf/PyMuPDF/issues/3950>`_: Unable to consistently extract field labels from PDFs
11+
* **Fixed** `3981 <https://github.com/pymupdf/PyMuPDF/issues/3981>`_: PyMuPDF 1.24.12 with pyinstaller throws error.
12+
* **Fixed** `3994 <https://github.com/pymupdf/PyMuPDF/issues/3994>`_: pix.color_topusage raise Segmentation fault (core dumped)
13+
14+
515
**Changes in version 1.24.12 (2024-10-21)**
616

717
* Fixed issues:

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.12** features as of **2024-10-21 00:00:01**.
3+
This documentation covers **PyMuPDF v1.24.13** features as of **2024-10-29 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
@@ -1137,7 +1137,7 @@ def sdist():
11371137
# We generate different wheels depending on PYMUPDF_SETUP_FLAVOUR.
11381138
#
11391139

1140-
version_p = '1.24.12'
1140+
version_p = '1.24.13'
11411141
version_b = '1.24.10'
11421142

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

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.24.12"
376+
pymupdf_version = "1.24.13"
377377
mupdf_version = mupdf.FZ_VERSION
378-
pymupdf_date = "2024-10-21 00:00:01"
378+
pymupdf_date = "2024-10-29 00:00:01"
379379

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

0 commit comments

Comments
 (0)