Skip to content

Commit c1c5564

Browse files
Update changelog, version numbers and release dates for release 1.24.7.
1 parent c940484 commit c1c5564

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-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.7
5051
- 1.24.6
5152
- 1.24.5
5253
- 1.24.4

changes.txt

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

44

5+
**Changes in version 1.24.7 (2024-06-26)**
6+
7+
* Fixed issues:
8+
9+
* **Fixed** `3615 <https://github.com/pymupdf/PyMuPDF/issues/3615>`_: Document.pagemode or Document.pagelayout crashes for epub files
10+
* **Fixed** `3616 <https://github.com/pymupdf/PyMuPDF/issues/3616>`_: not last version reported
11+
12+
513
**Changes in version 1.24.6 (2024-06-25)**
614

715
* 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.6** features as of **2024-06-25 00:00:01**.
3+
This documentation covers **PyMuPDF v1.24.7** features as of **2024-06-26 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
@@ -1128,7 +1128,7 @@ def sdist():
11281128
# We generate different wheels depending on g_flavour.
11291129
#
11301130

1131-
version = '1.24.6'
1131+
version = '1.24.7'
11321132
version_b = '1.24.6'
11331133

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

src/__init__.py

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

202202
# Basic version information.
203203
#
204-
pymupdf_version = "1.24.6"
204+
pymupdf_version = "1.24.7"
205205
mupdf_version = mupdf.FZ_VERSION
206-
pymupdf_date = "2024-06-25 00:00:01"
206+
pymupdf_date = "2024-06-26 00:00:01"
207207

208208
# Versions as tuples; useful when comparing versions.
209209
#

0 commit comments

Comments
 (0)