Skip to content

Commit 9717935

Browse files
Update changelog, version numbers and release dates for release 1.24.9.
Also incremented MuPDF version to current latest release, 1.24.8. In setup.py, include 'd' flavour by default; helps with testing.
1 parent 0f45692 commit 9717935

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ body:
4747
label: PyMuPDF version
4848
options:
4949
-
50+
- 1.24.9
5051
- 1.24.8
5152
- 1.24.7
5253
- 1.24.6

changes.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ Change Log
22
==========
33

44

5+
**Changes in version 1.24.9 (2024-07-24)**
6+
7+
* Incremented MyPDF version to 1.24.9.
8+
9+
510
**Changes in version 1.24.8 (2024-07-22)**
611

712
* Fixed issues:

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.24.8** features as of **2024-07-22 00:00:01**.
3+
This documentation covers **PyMuPDF v1.24.9** features as of **2024-07-24 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

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def log( text):
205205
log( f' {k}: {v!r}')
206206

207207

208-
PYMUPDF_SETUP_FLAVOUR = os.environ.get( 'PYMUPDF_SETUP_FLAVOUR', 'pb')
208+
PYMUPDF_SETUP_FLAVOUR = os.environ.get( 'PYMUPDF_SETUP_FLAVOUR', 'pbd')
209209
for i in PYMUPDF_SETUP_FLAVOUR:
210210
assert i in 'pbd', f'Unrecognised flag "{i} in {PYMUPDF_SETUP_FLAVOUR=}. Should be one of "p", "b", "pb"'
211211

@@ -395,7 +395,7 @@ def get_mupdf_internal(out, location=None, sha=None, local_tgz=None):
395395
log(f'get_mupdf_internal(): {out=} {location=} {sha=}')
396396
assert out in ('dir', 'tgz')
397397
if location is None:
398-
location = 'https://mupdf.com/downloads/archive/mupdf-1.24.4-source.tar.gz'
398+
location = 'https://mupdf.com/downloads/archive/mupdf-1.24.8-source.tar.gz'
399399
#location = 'git:--branch master https://github.com/ArtifexSoftware/mupdf.git'
400400

401401
if location == '':
@@ -1168,8 +1168,8 @@ def sdist():
11681168
# We generate different wheels depending on PYMUPDF_SETUP_FLAVOUR.
11691169
#
11701170

1171-
version_p = '1.24.8'
1172-
version_b = '1.24.8'
1171+
version_p = '1.24.9'
1172+
version_b = '1.24.9'
11731173

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

src/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,9 +208,9 @@ def _int_rc(text):
208208

209209
# Basic version information.
210210
#
211-
pymupdf_version = "1.24.8"
211+
pymupdf_version = "1.24.9"
212212
mupdf_version = mupdf.FZ_VERSION
213-
pymupdf_date = "2024-07-22 00:00:01"
213+
pymupdf_date = "2024-07-24 00:00:01"
214214

215215
# Versions as tuples; useful when comparing versions.
216216
#

0 commit comments

Comments
 (0)