Skip to content

Commit

Permalink
Update changelog, version numbers and dates for release of 1.24.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-smith-artifex-com committed Oct 21, 2024
1 parent 15e686b commit b099218
Show file tree
Hide file tree
Showing 5 changed files with 20 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.12
- 1.24.11
- 1.24.10
- 1.24.9
Expand Down
15 changes: 15 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@ Change Log
==========


**Changes in version 1.24.12 (2024-10-21)**

* Fixed issues:

* **Fixed** `3914 <https://github.com/pymupdf/PyMuPDF/issues/3914>`_: Ability to print MuPDF errors to logging instead of stdout
* **Fixed** `3916 <https://github.com/pymupdf/PyMuPDF/issues/3916>`_: insert_htmlbox error: int too large to convert to float
* **Fixed** `3950 <https://github.com/pymupdf/PyMuPDF/issues/3950>`_: Unable to consistently extract field labels from PDFs

* Supported Python versions are now 3.8-3.13.

* Dropped support for Python-3.7 because end-of-life.
* Added support for Python-3.13 because now released.
* See: https://devguide.python.org/versions/


**Changes in version 1.24.11 (2024-10-03)**

* Use MuPDF-1.24.10.
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.11** features as of **2024-10-03 00:00:01**.
This documentation covers **PyMuPDF v1.24.12** features as of **2024-10-21 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**.

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

version_p = '1.24.11'
version_p = '1.24.12'
version_b = '1.24.10'

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 @@ -371,9 +371,9 @@ def _int_rc(text):

# Basic version information.
#
pymupdf_version = "1.24.11"
pymupdf_version = "1.24.12"
mupdf_version = mupdf.FZ_VERSION
pymupdf_date = "2024-10-03 00:00:01"
pymupdf_date = "2024-10-21 00:00:01"

# Versions as tuples; useful when comparing versions.
#
Expand Down

0 comments on commit b099218

Please sign in to comment.