Skip to content

Commit

Permalink
Updated version and dates for 1.23.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-smith-artifex-com committed Aug 31, 2023
1 parent 4c7ef98 commit 1a3a06e
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 15 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.2
# PyMuPDF 1.23.3

This wheel contains MuPDF shared libraries for use by PyMuPDF.

Expand Down
5 changes: 5 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ Change Log
==========


**Changes in version 1.23.3 (2023-08-31)**

* Fixed use of Tesseract for OCR.


**Changes in version 1.23.2 (2023-08-28)**

* **Fixed** `#2613 https://github.com/pymupdf/PyMuPDF/issues/2613`_: release 1.23.0 not MacOS-arm64 compatible
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.2** features as of **2023-08-28 00:00:01**.
This documentation covers **PyMuPDF v1.23.3** features as of **2023-08-31 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,6 +1,6 @@
%pythoncode %{
VersionFitz = "1.23.0" # MuPDF version.
VersionBind = "1.23.2" # PyMuPDF version.
VersionDate = "2023-08-28 00:00:01"
version = (VersionBind, VersionFitz, "20230828000001")
VersionFitz = "1.23.2" # MuPDF version.
VersionBind = "1.23.3" # PyMuPDF version.
VersionDate = "2023-08-31 00:00:01"
version = (VersionBind, VersionFitz, "20230831000001")
%}
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ def get_mupdf_tgz():
'''
mupdf_url_or_local = os.environ.get(
'PYMUPDF_SETUP_MUPDF_TGZ',
'https://mupdf.com/downloads/archive/mupdf-1.23.0-source.tar.gz',
'https://mupdf.com/downloads/archive/mupdf-1.23.2-source.tar.gz',
)
log( f'mupdf_url_or_local={mupdf_url_or_local!r}')
if mupdf_url_or_local == '':
Expand Down Expand Up @@ -456,9 +456,9 @@ def get_mupdf():
# 2023-07-11: For now we default to mupdf master.
path = os.environ.get( 'PYMUPDF_SETUP_MUPDF_BUILD')
if 0:
# 2023-08-18: default to specific sha.
path = 'git:--recursive --depth 1 --shallow-submodules --branch master https://github.com/ArtifexSoftware/mupdf.git'
sha = 'a6aaf0b1162a' # Makerules scripts/wrap/__main__.py: fix cross-building to arm64 on MacOS.
# 2023-08-31: default to specific sha.
path = 'git:--recursive --depth 1 --shallow-submodules --branch master git://git.ghostscript.com/mupdf.git'
sha = '8e729ae6913e4' # scripts/wrap/: added support for building with tesseract.
else:
sha = None
log( f'PYMUPDF_SETUP_MUPDF_BUILD={path!r}')
Expand Down Expand Up @@ -1157,8 +1157,8 @@ def sdist():
# We generate different wheels depending on g_flavour.
#

version = '1.23.2'
version_b = '1.23.0' # Use older PyMuPDFb wheels.
version = '1.23.3'
version_b = '1.23.3'

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 @@ -21233,9 +21233,9 @@ class FitzDeprecation(DeprecationWarning):
pass


VersionFitz = "1.23.0" # MuPDF version.
VersionBind = "1.23.2" # PyMuPDF version.
VersionDate = "2023-08-28 00:00:01"
VersionFitz = "1.23.2" # MuPDF version.
VersionBind = "1.23.3" # PyMuPDF version.
VersionDate = "2023-08-31 00:00:01"
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
version = (VersionBind, VersionFitz, VersionDate2)

Expand Down

0 comments on commit 1a3a06e

Please sign in to comment.