Skip to content

Commit 1a3a06e

Browse files
Updated version and dates for 1.23.3.
1 parent 4c7ef98 commit 1a3a06e

File tree

6 files changed

+20
-15
lines changed

6 files changed

+20
-15
lines changed

READMErb.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PyMuPDF 1.23.2
1+
# PyMuPDF 1.23.3
22

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

changes.txt

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ Change Log
22
==========
33

44

5+
**Changes in version 1.23.3 (2023-08-31)**
6+
7+
* Fixed use of Tesseract for OCR.
8+
9+
510
**Changes in version 1.23.2 (2023-08-28)**
611

712
* **Fixed** `#2613 https://github.com/pymupdf/PyMuPDF/issues/2613`_: release 1.23.0 not MacOS-arm64 compatible

docs/version.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
----
22

3-
This documentation covers **PyMuPDF v1.23.2** features as of **2023-08-28 00:00:01**.
3+
This documentation covers **PyMuPDF v1.23.3** features as of **2023-08-31 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

fitz/version.i

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%pythoncode %{
2-
VersionFitz = "1.23.0" # MuPDF version.
3-
VersionBind = "1.23.2" # PyMuPDF version.
4-
VersionDate = "2023-08-28 00:00:01"
5-
version = (VersionBind, VersionFitz, "20230828000001")
2+
VersionFitz = "1.23.2" # MuPDF version.
3+
VersionBind = "1.23.3" # PyMuPDF version.
4+
VersionDate = "2023-08-31 00:00:01"
5+
version = (VersionBind, VersionFitz, "20230831000001")
66
%}

setup.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ def get_mupdf_tgz():
393393
'''
394394
mupdf_url_or_local = os.environ.get(
395395
'PYMUPDF_SETUP_MUPDF_TGZ',
396-
'https://mupdf.com/downloads/archive/mupdf-1.23.0-source.tar.gz',
396+
'https://mupdf.com/downloads/archive/mupdf-1.23.2-source.tar.gz',
397397
)
398398
log( f'mupdf_url_or_local={mupdf_url_or_local!r}')
399399
if mupdf_url_or_local == '':
@@ -456,9 +456,9 @@ def get_mupdf():
456456
# 2023-07-11: For now we default to mupdf master.
457457
path = os.environ.get( 'PYMUPDF_SETUP_MUPDF_BUILD')
458458
if 0:
459-
# 2023-08-18: default to specific sha.
460-
path = 'git:--recursive --depth 1 --shallow-submodules --branch master https://github.com/ArtifexSoftware/mupdf.git'
461-
sha = 'a6aaf0b1162a' # Makerules scripts/wrap/__main__.py: fix cross-building to arm64 on MacOS.
459+
# 2023-08-31: default to specific sha.
460+
path = 'git:--recursive --depth 1 --shallow-submodules --branch master git://git.ghostscript.com/mupdf.git'
461+
sha = '8e729ae6913e4' # scripts/wrap/: added support for building with tesseract.
462462
else:
463463
sha = None
464464
log( f'PYMUPDF_SETUP_MUPDF_BUILD={path!r}')
@@ -1157,8 +1157,8 @@ def sdist():
11571157
# We generate different wheels depending on g_flavour.
11581158
#
11591159

1160-
version = '1.23.2'
1161-
version_b = '1.23.0' # Use older PyMuPDFb wheels.
1160+
version = '1.23.3'
1161+
version_b = '1.23.3'
11621162

11631163
tag_python = None
11641164
requires_dist = None,

src/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -21233,9 +21233,9 @@ class FitzDeprecation(DeprecationWarning):
2123321233
pass
2123421234

2123521235

21236-
VersionFitz = "1.23.0" # MuPDF version.
21237-
VersionBind = "1.23.2" # PyMuPDF version.
21238-
VersionDate = "2023-08-28 00:00:01"
21236+
VersionFitz = "1.23.2" # MuPDF version.
21237+
VersionBind = "1.23.3" # PyMuPDF version.
21238+
VersionDate = "2023-08-31 00:00:01"
2123921239
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
2124021240
version = (VersionBind, VersionFitz, VersionDate2)
2124121241

0 commit comments

Comments
 (0)