Skip to content

Commit

Permalink
Updates for release of PyMuPDF-1.23.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-smith-artifex-com committed Nov 30, 2023
1 parent e1bad0b commit bde223b
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
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.6
# PyMuPDF 1.23.7

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.7 ()**
**Changes in version 1.23.7 (2023-11-30)**

* Bug fixes in rebased implementation, not fixed in classic 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.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**.

8 changes: 4 additions & 4 deletions fitz/version.i
Original file line number Diff line number Diff line change
@@ -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('.')])
%}
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 == '':
Expand Down Expand Up @@ -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,
Expand Down
6 changes: 3 additions & 3 deletions src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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('.')])
Expand Down

0 comments on commit bde223b

Please sign in to comment.