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 Dec 5, 2024
1 parent 6cdf647 commit a0e8984
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 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.25.0
- 1.24.14
- 1.24.13
- 1.24.12
Expand Down
4 changes: 3 additions & 1 deletion changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ Change Log
==========


**Changes in version 1.25.0 ()**
**Changes in version 1.25.0 (2024-12-05)**

* Use MuPDF-1.25.1.

* Fixed issues:

* **Fixed** `4026 <https://github.com/pymupdf/PyMuPDF/issues/4026>`_: page.get_text('blocks') output two piece of very similar text with different bbox
* **Fixed** `4004 <https://github.com/pymupdf/PyMuPDF/issues/4004>`_: Segmentation Fault When Updating PDF Form Field Value
* **Fixed** `3751 <https://github.com/pymupdf/PyMuPDF/issues/3751>`_: apply_redactions causes part of the page content to be hidden / transparent
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.14** features as of **2024-11-19 00:00:01**.
This documentation covers **PyMuPDF v1.25.0** features as of **2024-12-05 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
4 changes: 2 additions & 2 deletions scripts/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
./PyMuPDF/scripts/test.py --mupdf 'git:https://git.ghostscript.com/mupdf.git' buildtest
Build and test with internal checkout of mupdf master.
./PyMuPDF/scripts/test.py --mupdf 'git:--branch 1.24.x https://github.com/ArtifexSoftware/mupdf.git' buildtest
Build and test using internal checkout of mupdf 1.24.x branch from Github.
./PyMuPDF/scripts/test.py --mupdf 'git:--branch 1.25.x https://github.com/ArtifexSoftware/mupdf.git' buildtest
Build and test using internal checkout of mupdf 1.25.x branch from Github.
Usage:
scripts/test.py <options> <command(s)>
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1157,8 +1157,8 @@ def sdist():
# We generate different wheels depending on PYMUPDF_SETUP_FLAVOUR.
#

version_p = '1.24.14'
version_b = '1.24.11'
version_p = '1.25.0'
version_b = '1.25.0'
version_mupdf = '1.25.1'

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.14"
pymupdf_version = "1.25.0"
mupdf_version = mupdf.FZ_VERSION
pymupdf_date = "2024-11-19 00:00:01"
pymupdf_date = "2024-12-05 00:00:01"

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

0 comments on commit a0e8984

Please sign in to comment.