diff --git a/READMErb.md b/READMErb.md index e0669abaa..6900a78e9 100644 --- a/READMErb.md +++ b/READMErb.md @@ -1,4 +1,4 @@ -# PyMuPDF 1.23.6 +# PyMuPDF 1.23.7 This wheel contains MuPDF shared libraries for use by PyMuPDF. diff --git a/changes.txt b/changes.txt index cec70e062..322f0f357 100644 --- a/changes.txt +++ b/changes.txt @@ -2,7 +2,7 @@ Change Log ========== -**Changes in version 1.23.7 ()** +**Changes in version 1.23.7 (2023-11-30)** * Bug fixes in rebased implementation, not fixed in classic implementation: diff --git a/docs/version.rst b/docs/version.rst index f14741ffa..749fd2247 100644 --- a/docs/version.rst +++ b/docs/version.rst @@ -1,6 +1,6 @@ ---- -This documentation covers **PyMuPDF v1.23.6** features as of **2023-11-06 00:00:01**. +This documentation covers **PyMuPDF v1.23.7** features as of **2023-11-30 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**. diff --git a/fitz/version.i b/fitz/version.i index 62536e204..d32bb5e9c 100644 --- a/fitz/version.i +++ b/fitz/version.i @@ -1,7 +1,7 @@ %pythoncode %{ -VersionFitz = "1.23.5" # MuPDF version. -VersionBind = "1.23.6" # PyMuPDF version. -VersionDate = "2023-11-06 00:00:01" -version = (VersionBind, VersionFitz, "20231106000001") +VersionFitz = "1.23.7" # MuPDF version. +VersionBind = "1.23.7" # PyMuPDF version. +VersionDate = "2023-11-30 00:00:01" +version = (VersionBind, VersionFitz, "20231130000001") pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')]) %} diff --git a/setup.py b/setup.py index d386b145a..d38028945 100755 --- a/setup.py +++ b/setup.py @@ -387,7 +387,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.5-source.tar.gz' + location = 'https://mupdf.com/downloads/archive/mupdf-1.23.7-source.tar.gz' #location = 'git:--branch master https://github.com/ArtifexSoftware/mupdf.git' if location == '': @@ -1184,8 +1184,8 @@ def sdist(): # We generate different wheels depending on g_flavour. # -version = '1.23.6' -version_b = '1.23.6' +version = '1.23.7' +version_b = '1.23.7' tag_python = None requires_dist = None, diff --git a/src/__init__.py b/src/__init__.py index ae101d75f..3fef04d38 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -21433,9 +21433,9 @@ class FitzDeprecation(DeprecationWarning): pass -VersionFitz = "1.23.5" # MuPDF version. -VersionBind = "1.23.6" # PyMuPDF version. -VersionDate = "2023-11-06 00:00:01" +VersionFitz = "1.23.7" # MuPDF version. +VersionBind = "1.23.7" # PyMuPDF version. +VersionDate = "2023-11-30 00:00:01" VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '') version = (VersionBind, VersionFitz, VersionDate2) pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])