Skip to content

Commit

Permalink
Update version numbers and dates for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-smith-artifex-com committed Jan 17, 2025
1 parent 55703bf commit ad4b871
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 20 deletions.
18 changes: 2 additions & 16 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,24 +47,10 @@ body:
label: PyMuPDF version
options:
-
- 1.25.2
- 1.25.1
- 1.25.0
- 1.24.14
- 1.24.13
- 1.24.12
- 1.24.11
- 1.24.10
- 1.24.9
- 1.24.8
- 1.24.7
- 1.24.6
- 1.24.5
- 1.24.4
- 1.24.3
- 1.24.2
- 1.24.1
- 1.24.0
- 1.23.x or earlier
- 1.24.x or earlier
- Built from source
description: |
* For example from `pymupdf.VersionBind`.
Expand Down
19 changes: 19 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@ Change Log
==========


**Changes in version 1.25.2 (2025-01-17)**

* Fixed issues:

* **Fixed** `4055 <https://github.com/pymupdf/PyMuPDF/issues/4055>`_: "Yes" for all checkboxes does not work for all PDF rendering engines.
* **Fixed** `4155 <https://github.com/pymupdf/PyMuPDF/issues/4155>`_: samples_mv is unsafe
* **Fixed** `4186 <https://github.com/pymupdf/PyMuPDF/issues/4186>`_: Incorrect handling of JPEG with color space CMYK image extraction
* **Fixed** `4225 <https://github.com/pymupdf/PyMuPDF/issues/4225>`_: pixmap.pil_save() fails due to colorspace definition
* **Fixed** `4232 <https://github.com/pymupdf/PyMuPDF/issues/4232>`_: Incorrect Font style and Size

* Other:

* Use Python's built-in glyphname <> unicode conversion.
* Improve speed of pixmap color inversion.
* Add new `char_flags` member to span dictionary, for example allows detection of invisible text.
* Detect image masks in TextPage output.
* Added `Pixmap.pil_image()`.


**Changes in version 1.25.1 (2024-12-11)**

* Use MuPDF-1.25.2.
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.25.1** features as of **2024-12-11 00:00:01**.
This documentation covers **PyMuPDF v1.25.2** features as of **2025-01-17 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 @@ -1157,7 +1157,7 @@ def sdist():
# We generate different wheels depending on PYMUPDF_SETUP_FLAVOUR.
#

version_p = '1.25.1'
version_p = '1.25.2'
version_b = '1.25.1'
version_mupdf = '1.25.2'

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.25.1"
pymupdf_version = "1.25.2"
mupdf_version = mupdf.FZ_VERSION
pymupdf_date = "2024-12-11 00:00:01"
pymupdf_date = "2025-01-17 00:00:01"

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

0 comments on commit ad4b871

Please sign in to comment.