Skip to content

Commit

Permalink
Update changelog, version numbers and release dates for release 1.24.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-smith-artifex-com committed May 30, 2024
1 parent 8ec2407 commit ec4497b
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ body:
label: PyMuPDF version
options:
-
- 1.24.5
- 1.24.4
- 1.24.3
- 1.24.2
Expand Down
16 changes: 16 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@ Change Log
==========


**Changes in version 1.24.5 (2024-05-30)**

* Fixed issues:

* **Fixed** `3479 <https://github.com/pymupdf/PyMuPDF/issues/3479>`_: regression: fill_textbox: IndexError: pop from empty list
* **Fixed** `3488 <https://github.com/pymupdf/PyMuPDF/issues/3488>`_: set_toc method error

* Other:

* Some more fixes to use MuPDF floating formatting.
* Removed/disabled some unnecessary diagnostics.
* Fixed utils.do_links() crash.
* Experimental new functions `pymupdf.apply_pages()` and `pymupdf.get_text()`.
* Addresses wrong label generation for label styles "a" and "A".


**Changes in version 1.24.4 (2024-05-16)**

* **Fixed** `3418 <https://github.com/pymupdf/PyMuPDF/issues/3418>`_: Re-introduced bug, text align add_redact_annot
Expand Down
2 changes: 1 addition & 1 deletion docs/version.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
----

This documentation covers **PyMuPDF v1.24.4** features as of **2024-05-16 00:00:01**.
This documentation covers **PyMuPDF v1.24.5** features as of **2024-05-30 00:00:01**.

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**.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1113,7 +1113,7 @@ def sdist():
# We generate different wheels depending on g_flavour.
#

version = '1.24.4'
version = '1.24.5'
version_b = '1.24.3'

if os.path.exists(f'{g_root}/{g_pymupdfb_sdist_marker}'):
Expand Down
4 changes: 2 additions & 2 deletions src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ def _int_rc(text):
return int(text)

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

0 comments on commit ec4497b

Please sign in to comment.