Skip to content

Commit 59e7866

Browse files
Update version numbers and dates for release of 1.23.9rc1.
1 parent b179734 commit 59e7866

File tree

7 files changed

+14
-13
lines changed

7 files changed

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

READMErb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PyMuPDF 1.23.9rc1
1+
# PyMuPDF 1.23.9rc2
22

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

changes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Change Log
22
==========
33

44

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

77
* Use MuPDF-1.23.8.
88

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.23.9rc1** features as of **2024-01-02 00:00:01**.
3+
This documentation covers **PyMuPDF v1.23.9rc2** features as of **2024-01-08 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: 3 additions & 3 deletions
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.7-source.tar.gz'
387+
location = 'https://mupdf.com/downloads/archive/mupdf-1.23.8-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.9rc1'
1076-
version_b = '1.23.9rc1'
1075+
version = '1.23.9rc2'
1076+
version_b = '1.23.9rc2'
10771077

10781078
tag_python = None
10791079
requires_dist = None,

src/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21786,9 +21786,9 @@ def int_rc(text):
2178621786
text = text[:rc]
2178721787
return int(text)
2178821788

21789-
VersionFitz = "1.23.7" # MuPDF version.
21790-
VersionBind = "1.23.9rc1" # PyMuPDF version.
21791-
VersionDate = "2024-01-02 00:00:01"
21789+
VersionFitz = "1.23.8" # MuPDF version.
21790+
VersionBind = "1.23.9rc2" # PyMuPDF version.
21791+
VersionDate = "2024-01-08 00:00:01"
2179221792
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
2179321793
version = (VersionBind, VersionFitz, VersionDate2)
2179421794
pymupdf_version_tuple = tuple( [int_rc(i) for i in VersionBind.split('.')])

src_classic/version.i

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%pythoncode %{
2-
VersionFitz = "1.23.7" # MuPDF version.
3-
VersionBind = "1.23.9rc1" # PyMuPDF version.
4-
VersionDate = "2024-01-02 00:00:01"
5-
version = (VersionBind, VersionFitz, "20240102000001")
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")
66
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])
77
%}

0 commit comments

Comments
 (0)