Skip to content

Commit 74a368b

Browse files
Update changelog, version numbers and release dates for release 1.24.4.
1 parent 73bdc3b commit 74a368b

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-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.4
5051
- 1.24.3
5152
- 1.24.2
5253
- 1.24.1

changes.txt

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

44

5+
**Changes in version 1.24.4 (2024-05-16)**
6+
7+
* **Fixed** `3418 <https://github.com/pymupdf/PyMuPDF/issues/3418>`_: Re-introduced bug, text align add_redact_annot
8+
9+
* Other:
10+
11+
* Fixed sysinstall test failing to remove all of prior installation before
12+
new install.
13+
* Fixed `utils.do_links()` crash.
14+
* Correct `TextPage` creation Code.
15+
* Unified various diagnostics.
16+
* Fix bug in `page_merge()`.
17+
18+
519
**Changes in version 1.24.3 (2024-05-09)**
620

721
*

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.3** features as of **2024-05-09 00:00:01**.
3+
This documentation covers **PyMuPDF v1.24.4** features as of **2024-05-16 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
@@ -1117,7 +1117,7 @@ def sdist():
11171117
# We generate different wheels depending on g_flavour.
11181118
#
11191119

1120-
version = '1.24.3'
1120+
version = '1.24.4'
11211121
version_b = '1.24.3'
11221122

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

src/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ def _int_rc(text):
183183
return int(text)
184184

185185
VersionFitz = mupdf.FZ_VERSION # MuPDF version.
186-
VersionBind = "1.24.3" # PyMuPDF version.
187-
VersionDate = "2024-05-09 00:00:01"
186+
VersionBind = "1.24.4" # PyMuPDF version.
187+
VersionDate = "2024-05-16 00:00:01"
188188
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
189189
version = (VersionBind, VersionFitz, VersionDate2)
190190
pymupdf_version_tuple = tuple( [_int_rc(i) for i in VersionBind.split('.')])

0 commit comments

Comments
 (0)