Skip to content

Commit

Permalink
Updated versions and dates for release of 1.23.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-smith-artifex-com committed Jan 11, 2024
1 parent b4bc84c commit b2aa330
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ body:
label: PyMuPDF version
options:
-
- 1.23.9
- 1.23.9rc2
- 1.23.9rc1
- 1.23.8
Expand Down
2 changes: 1 addition & 1 deletion READMErb.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# PyMuPDF 1.23.9rc2
# PyMuPDF 1.23.9

This wheel contains MuPDF shared libraries for use by PyMuPDF.

Expand Down
2 changes: 1 addition & 1 deletion changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Change Log
==========


**Changes in version 1.23.9 ()**
**Changes in version 1.23.9 (2024-01-11)**

* Default to new "rebased" implementation.

Expand Down
2 changes: 1 addition & 1 deletion docs/version.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
----

This documentation covers **PyMuPDF v1.23.9rc2** features as of **2024-01-08 00:00:01**.
This documentation covers **PyMuPDF v1.23.9** features as of **2024-01-11 00:00:01**.

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

6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ def get_mupdf_internal(out, location=None, sha=None, local_tgz=None):
log(f'get_mupdf_internal(): {out=} {location=} {sha=}')
assert out in ('dir', 'tgz')
if location is None:
location = 'https://mupdf.com/downloads/archive/mupdf-1.23.8-source.tar.gz'
location = 'https://mupdf.com/downloads/archive/mupdf-1.23.9-source.tar.gz'
#location = 'git:--branch master https://github.com/ArtifexSoftware/mupdf.git'

if location == '':
Expand Down Expand Up @@ -1072,8 +1072,8 @@ def sdist():
# We generate different wheels depending on g_flavour.
#

version = '1.23.9rc2'
version_b = '1.23.9rc2'
version = '1.23.9'
version_b = '1.23.9'

tag_python = None
requires_dist = None,
Expand Down
6 changes: 3 additions & 3 deletions src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21795,9 +21795,9 @@ def int_rc(text):
text = text[:rc]
return int(text)

VersionFitz = "1.23.8" # MuPDF version.
VersionBind = "1.23.9rc2" # PyMuPDF version.
VersionDate = "2024-01-08 00:00:01"
VersionFitz = "1.23.9" # MuPDF version.
VersionBind = "1.23.9" # PyMuPDF version.
VersionDate = "2024-01-11 00:00:01"
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
version = (VersionBind, VersionFitz, VersionDate2)
pymupdf_version_tuple = tuple( [int_rc(i) for i in VersionBind.split('.')])
Expand Down
8 changes: 4 additions & 4 deletions src_classic/version.i
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%pythoncode %{
VersionFitz = "1.23.8" # MuPDF version.
VersionBind = "1.23.9rc2" # PyMuPDF version.
VersionDate = "2024-01-08 00:00:01"
version = (VersionBind, VersionFitz, "20240108000001")
VersionFitz = "1.23.9" # MuPDF version.
VersionBind = "1.23.9" # PyMuPDF version.
VersionDate = "2024-01-11 00:00:01"
version = (VersionBind, VersionFitz, "20240111000001")
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])
%}

0 comments on commit b2aa330

Please sign in to comment.