Skip to content

Commit a0e8984

Browse files
Update version numbers and dates for release.
1 parent 6cdf647 commit a0e8984

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ body:
4747
label: PyMuPDF version
4848
options:
4949
-
50+
- 1.25.0
5051
- 1.24.14
5152
- 1.24.13
5253
- 1.24.12

changes.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@ Change Log
22
==========
33

44

5-
**Changes in version 1.25.0 ()**
5+
**Changes in version 1.25.0 (2024-12-05)**
66

77
* Use MuPDF-1.25.1.
88

9+
* Fixed issues:
10+
911
* **Fixed** `4026 <https://github.com/pymupdf/PyMuPDF/issues/4026>`_: page.get_text('blocks') output two piece of very similar text with different bbox
1012
* **Fixed** `4004 <https://github.com/pymupdf/PyMuPDF/issues/4004>`_: Segmentation Fault When Updating PDF Form Field Value
1113
* **Fixed** `3751 <https://github.com/pymupdf/PyMuPDF/issues/3751>`_: apply_redactions causes part of the page content to be hidden / transparent

docs/version.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
----
22

3-
This documentation covers **PyMuPDF v1.24.14** features as of **2024-11-19 00:00:01**.
3+
This documentation covers **PyMuPDF v1.25.0** features as of **2024-12-05 00:00:01**.
44

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

scripts/test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
./PyMuPDF/scripts/test.py --mupdf 'git:https://git.ghostscript.com/mupdf.git' buildtest
1414
Build and test with internal checkout of mupdf master.
1515
16-
./PyMuPDF/scripts/test.py --mupdf 'git:--branch 1.24.x https://github.com/ArtifexSoftware/mupdf.git' buildtest
17-
Build and test using internal checkout of mupdf 1.24.x branch from Github.
16+
./PyMuPDF/scripts/test.py --mupdf 'git:--branch 1.25.x https://github.com/ArtifexSoftware/mupdf.git' buildtest
17+
Build and test using internal checkout of mupdf 1.25.x branch from Github.
1818
1919
Usage:
2020
scripts/test.py <options> <command(s)>

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1157,8 +1157,8 @@ def sdist():
11571157
# We generate different wheels depending on PYMUPDF_SETUP_FLAVOUR.
11581158
#
11591159

1160-
version_p = '1.24.14'
1161-
version_b = '1.24.11'
1160+
version_p = '1.25.0'
1161+
version_b = '1.25.0'
11621162
version_mupdf = '1.25.1'
11631163

11641164
if os.path.exists(f'{g_root}/{g_pymupdfb_sdist_marker}'):

src/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -373,9 +373,9 @@ def _int_rc(text):
373373

374374
# Basic version information.
375375
#
376-
pymupdf_version = "1.24.14"
376+
pymupdf_version = "1.25.0"
377377
mupdf_version = mupdf.FZ_VERSION
378-
pymupdf_date = "2024-11-19 00:00:01"
378+
pymupdf_date = "2024-12-05 00:00:01"
379379

380380
# Versions as tuples; useful when comparing versions.
381381
#

0 commit comments

Comments
 (0)