Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update changelog, version numbers and dates for release of 1.24.13. #4001

Merged
merged 1 commit into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.13
- 1.24.12
- 1.24.11
- 1.24.10
Expand Down
10 changes: 10 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@ Change Log
==========


**Changes in version 1.24.13 (2024-10-29)**

* Fixed issues:

* **Fixed** `3848 <https://github.com/pymupdf/PyMuPDF/issues/3848>`_: Piximap program crash
* **Fixed** `3950 <https://github.com/pymupdf/PyMuPDF/issues/3950>`_: Unable to consistently extract field labels from PDFs
* **Fixed** `3981 <https://github.com/pymupdf/PyMuPDF/issues/3981>`_: PyMuPDF 1.24.12 with pyinstaller throws error.
* **Fixed** `3994 <https://github.com/pymupdf/PyMuPDF/issues/3994>`_: pix.color_topusage raise Segmentation fault (core dumped)


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

* Fixed issues:
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.12** features as of **2024-10-21 00:00:01**.
This documentation covers **PyMuPDF v1.24.13** features as of **2024-10-29 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 @@ -1137,7 +1137,7 @@ def sdist():
# We generate different wheels depending on PYMUPDF_SETUP_FLAVOUR.
#

version_p = '1.24.12'
version_p = '1.24.13'
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 @@ -373,9 +373,9 @@ def _int_rc(text):

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

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