Skip to content

Commit ec4497b

Browse files
Update changelog, version numbers and release dates for release 1.24.5.
1 parent 8ec2407 commit ec4497b

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ body:
4747
label: PyMuPDF version
4848
options:
4949
-
50+
- 1.24.5
5051
- 1.24.4
5152
- 1.24.3
5253
- 1.24.2

changes.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@ Change Log
22
==========
33

44

5+
**Changes in version 1.24.5 (2024-05-30)**
6+
7+
* Fixed issues:
8+
9+
* **Fixed** `3479 <https://github.com/pymupdf/PyMuPDF/issues/3479>`_: regression: fill_textbox: IndexError: pop from empty list
10+
* **Fixed** `3488 <https://github.com/pymupdf/PyMuPDF/issues/3488>`_: set_toc method error
11+
12+
* Other:
13+
14+
* Some more fixes to use MuPDF floating formatting.
15+
* Removed/disabled some unnecessary diagnostics.
16+
* Fixed utils.do_links() crash.
17+
* Experimental new functions `pymupdf.apply_pages()` and `pymupdf.get_text()`.
18+
* Addresses wrong label generation for label styles "a" and "A".
19+
20+
521
**Changes in version 1.24.4 (2024-05-16)**
622

723
* **Fixed** `3418 <https://github.com/pymupdf/PyMuPDF/issues/3418>`_: Re-introduced bug, text align add_redact_annot

docs/version.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
----
22

3-
This documentation covers **PyMuPDF v1.24.4** features as of **2024-05-16 00:00:01**.
3+
This documentation covers **PyMuPDF v1.24.5** features as of **2024-05-30 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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1113,7 +1113,7 @@ def sdist():
11131113
# We generate different wheels depending on g_flavour.
11141114
#
11151115

1116-
version = '1.24.4'
1116+
version = '1.24.5'
11171117
version_b = '1.24.3'
11181118

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

src/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ def _int_rc(text):
200200
return int(text)
201201

202202
VersionFitz = mupdf.FZ_VERSION # MuPDF version.
203-
VersionBind = "1.24.4" # PyMuPDF version.
204-
VersionDate = "2024-05-16 00:00:01"
203+
VersionBind = "1.24.5" # PyMuPDF version.
204+
VersionDate = "2024-05-30 00:00:01"
205205
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
206206
version = (VersionBind, VersionFitz, VersionDate2)
207207
pymupdf_version_tuple = tuple( [_int_rc(i) for i in VersionBind.split('.')])

0 commit comments

Comments
 (0)