Skip to content

Commit 2115c87

Browse files
Update version numbers.
1 parent 638e488 commit 2115c87

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ body:
4646
attributes:
4747
label: PyMuPDF version
4848
options:
49-
-
49+
- 1.26.0
5050
- 1.25.5
5151
- 1.25.4
5252
- 1.25.3

docs/version.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
----
22

3-
This documentation covers **PyMuPDF v1.25.5** features as of **2025-03-31 00:00:01**.
3+
This documentation covers **PyMuPDF v1.26.0** features as of **2025-03-31 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

Lines changed: 2 additions & 2 deletions
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.25.x https://github.com/ArtifexSoftware/mupdf.git' buildtest
17-
Build and test using internal checkout of mupdf 1.25.x branch from Github.
16+
./PyMuPDF/scripts/test.py --mupdf 'git:--branch 1.26.x https://github.com/ArtifexSoftware/mupdf.git' buildtest
17+
Build and test using internal checkout of mupdf 1.26.x branch from Github.
1818
1919
Usage:
2020
scripts/test.py <options> <command(s)>

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1229,15 +1229,15 @@ def sdist():
12291229
#
12301230

12311231
# PyMuPDF version.
1232-
version_p = '1.25.5'
1232+
version_p = '1.26.0'
12331233

12341234
# PyMuPDFb version. This is the PyMuPDF version whose PyMuPDFb wheels we will
12351235
# (re)use if generating separate PyMuPDFb wheels. Though as of PyMuPDF-1.24.11
12361236
# (2024-10-03) we no longer use PyMuPDFb wheels so this is actually unused.
12371237
#
1238-
version_b = '1.25.3'
1238+
version_b = '1.26.0'
12391239

1240-
version_mupdf = '1.25.6'
1240+
version_mupdf = '1.26.1'
12411241

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

src/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def _int_rc(text):
375375

376376
# Basic version information.
377377
#
378-
pymupdf_version = "1.25.5"
378+
pymupdf_version = "1.26.0"
379379
mupdf_version = mupdf.FZ_VERSION
380380
pymupdf_date = "2025-03-31 00:00:01"
381381

@@ -5809,7 +5809,7 @@ def update_object(self, xref, text, page=None):
58095809
pdf = _as_pdf_document(self)
58105810
xreflen = mupdf.pdf_xref_len(pdf)
58115811
if not _INRANGE(xref, 1, xreflen-1):
5812-
RAISEPY("bad xref", MSG_BAD_XREF, PyExc_ValueError)
5812+
RAISEPY("bad xref", MSG_BAD_XREF)
58135813
ENSURE_OPERATION(pdf)
58145814
# create new object with passed-in string
58155815
new_obj = JM_pdf_obj_from_str(pdf, text)

0 commit comments

Comments
 (0)