Skip to content

Commit 3ca9d3d

Browse files
Update version and dates for release 1.23.4.
1 parent f4cdca8 commit 3ca9d3d

File tree

6 files changed

+17
-15
lines changed

6 files changed

+17
-15
lines changed

changes.txt

+8-7
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,21 @@ Change Log
22
==========
33

44

5-
**Changes in next release
5+
**Changes in version 1.23.4 (2023-09-26)**
66

77
* Improved build instructions.
88
* Fixed Tesseract in rebased implementation.
99
* Improvements to build/install with system MuPDF.
1010
* Fixed Pyodide builds.
11+
* Fixed rebased bug in _insert_image().
1112

12-
* **Fixed** `2683 <https://github.com/pymupdf/PyMuPDF/issues/2683>`_: Windows sdist build failure - non-quoting of path and using UNIX which command
13-
14-
* **Fixed** `2556 <https://github.com/pymupdf/PyMuPDF/issues/2556>`_: Segmentation fault at caling get_cdrawings(extended=True)
15-
16-
* **Fixed** `2637 <https://github.com/pymupdf/PyMuPDF/issues/2637>`_: Page.insert_textbox incorrectly handles the last word if it starts a new line
17-
13+
* Bug fixes:
1814

15+
* **Fixed** `2556 <https://github.com/pymupdf/PyMuPDF/issues/2556>`_: Segmentation fault at caling get_cdrawings(extended=True)
16+
* **Fixed** `2637 <https://github.com/pymupdf/PyMuPDF/issues/2637>`_: Page.insert_textbox incorrectly handles the last word if it starts a new line
17+
* **Fixed** `2683 <https://github.com/pymupdf/PyMuPDF/issues/2683>`_: Windows sdist build failure - non-quoting of path and using UNIX which command
18+
* **Fixed** `2691 <https://github.com/pymupdf/PyMuPDF/issues/2691>`_: Page.get_textpage_ocr() bug in rebased fitz_new version
19+
* **Fixed** `2692 <https://github.com/pymupdf/PyMuPDF/issues/2692>`_: Page.get_pixmap(clip=Rect()) bug in rebased fitz_new version
1920

2021

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

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%pythoncode %{
22
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")
3+
VersionBind = "1.23.4" # PyMuPDF version.
4+
VersionDate = "2023-09-26 00:00:01"
5+
version = (VersionBind, VersionFitz, "20230926000001")
66
%}

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1194,7 +1194,7 @@ def sdist():
11941194
# We generate different wheels depending on g_flavour.
11951195
#
11961196

1197-
version = '1.23.3'
1197+
version = '1.23.4'
11981198
version_b = '1.23.3'
11991199

12001200
tag_python = None

src/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21249,8 +21249,8 @@ class FitzDeprecation(DeprecationWarning):
2124921249

2125021250

2125121251
VersionFitz = "1.23.2" # MuPDF version.
21252-
VersionBind = "1.23.3" # PyMuPDF version.
21253-
VersionDate = "2023-08-31 00:00:01"
21252+
VersionBind = "1.23.4" # PyMuPDF version.
21253+
VersionDate = "2023-09-26 00:00:01"
2125421254
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
2125521255
version = (VersionBind, VersionFitz, VersionDate2)
2125621256

tests/test_general.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -515,11 +515,12 @@ def test_2430():
515515
def test_2692():
516516
document = fitz.Document(f'{scriptdir}/resources/2.pdf')
517517
for page in document:
518-
pix = pix = page.get_pixmap(clip=fitz.Rect(0,0,10,10))
518+
pix = page.get_pixmap(clip=fitz.Rect(0,0,10,10))
519519
dl = page.get_displaylist(annots=True)
520520
pix = dl.get_pixmap(
521521
matrix=fitz.Identity,
522522
colorspace=fitz.csRGB,
523523
alpha=False,
524524
clip=fitz.Rect(0,0,10,10),
525525
)
526+

0 commit comments

Comments
 (0)