Skip to content

Commit b2aa330

Browse files
Updated versions and dates for release of 1.23.9.
1 parent b4bc84c commit b2aa330

File tree

7 files changed

+14
-13
lines changed

7 files changed

+14
-13
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.23.9
5051
- 1.23.9rc2
5152
- 1.23.9rc1
5253
- 1.23.8

READMErb.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PyMuPDF 1.23.9rc2
1+
# PyMuPDF 1.23.9
22

33
This wheel contains MuPDF shared libraries for use by PyMuPDF.
44

changes.txt

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

44

5-
**Changes in version 1.23.9 ()**
5+
**Changes in version 1.23.9 (2024-01-11)**
66

77
* Default to new "rebased" implementation.
88

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.23.9rc2** features as of **2024-01-08 00:00:01**.
3+
This documentation covers **PyMuPDF v1.23.9** features as of **2024-01-11 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

+3-3
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ def get_mupdf_internal(out, location=None, sha=None, local_tgz=None):
384384
log(f'get_mupdf_internal(): {out=} {location=} {sha=}')
385385
assert out in ('dir', 'tgz')
386386
if location is None:
387-
location = 'https://mupdf.com/downloads/archive/mupdf-1.23.8-source.tar.gz'
387+
location = 'https://mupdf.com/downloads/archive/mupdf-1.23.9-source.tar.gz'
388388
#location = 'git:--branch master https://github.com/ArtifexSoftware/mupdf.git'
389389

390390
if location == '':
@@ -1072,8 +1072,8 @@ def sdist():
10721072
# We generate different wheels depending on g_flavour.
10731073
#
10741074

1075-
version = '1.23.9rc2'
1076-
version_b = '1.23.9rc2'
1075+
version = '1.23.9'
1076+
version_b = '1.23.9'
10771077

10781078
tag_python = None
10791079
requires_dist = None,

src/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -21795,9 +21795,9 @@ def int_rc(text):
2179521795
text = text[:rc]
2179621796
return int(text)
2179721797

21798-
VersionFitz = "1.23.8" # MuPDF version.
21799-
VersionBind = "1.23.9rc2" # PyMuPDF version.
21800-
VersionDate = "2024-01-08 00:00:01"
21798+
VersionFitz = "1.23.9" # MuPDF version.
21799+
VersionBind = "1.23.9" # PyMuPDF version.
21800+
VersionDate = "2024-01-11 00:00:01"
2180121801
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
2180221802
version = (VersionBind, VersionFitz, VersionDate2)
2180321803
pymupdf_version_tuple = tuple( [int_rc(i) for i in VersionBind.split('.')])

src_classic/version.i

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%pythoncode %{
2-
VersionFitz = "1.23.8" # MuPDF version.
3-
VersionBind = "1.23.9rc2" # PyMuPDF version.
4-
VersionDate = "2024-01-08 00:00:01"
5-
version = (VersionBind, VersionFitz, "20240108000001")
2+
VersionFitz = "1.23.9" # MuPDF version.
3+
VersionBind = "1.23.9" # PyMuPDF version.
4+
VersionDate = "2024-01-11 00:00:01"
5+
version = (VersionBind, VersionFitz, "20240111000001")
66
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])
77
%}

0 commit comments

Comments
 (0)