Skip to content

Commit

Permalink
Update version and dates for release 1.23.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-smith-artifex-com committed Sep 26, 2023
1 parent f4cdca8 commit 3ca9d3d
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 15 deletions.
15 changes: 8 additions & 7 deletions changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,21 @@ Change Log
==========


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

* Improved build instructions.
* Fixed Tesseract in rebased implementation.
* Improvements to build/install with system MuPDF.
* Fixed Pyodide builds.
* Fixed rebased bug in _insert_image().

* **Fixed** `2683 <https://github.com/pymupdf/PyMuPDF/issues/2683>`_: Windows sdist build failure - non-quoting of path and using UNIX which command

* **Fixed** `2556 <https://github.com/pymupdf/PyMuPDF/issues/2556>`_: Segmentation fault at caling get_cdrawings(extended=True)

* **Fixed** `2637 <https://github.com/pymupdf/PyMuPDF/issues/2637>`_: Page.insert_textbox incorrectly handles the last word if it starts a new line

* Bug fixes:

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


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

6 changes: 3 additions & 3 deletions fitz/version.i
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
%pythoncode %{
VersionFitz = "1.23.2" # MuPDF version.
VersionBind = "1.23.3" # PyMuPDF version.
VersionDate = "2023-08-31 00:00:01"
version = (VersionBind, VersionFitz, "20230831000001")
VersionBind = "1.23.4" # PyMuPDF version.
VersionDate = "2023-09-26 00:00:01"
version = (VersionBind, VersionFitz, "20230926000001")
%}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1194,7 +1194,7 @@ def sdist():
# We generate different wheels depending on g_flavour.
#

version = '1.23.3'
version = '1.23.4'
version_b = '1.23.3'

tag_python = None
Expand Down
4 changes: 2 additions & 2 deletions src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21249,8 +21249,8 @@ class FitzDeprecation(DeprecationWarning):


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

Expand Down
3 changes: 2 additions & 1 deletion tests/test_general.py
Original file line number Diff line number Diff line change
Expand Up @@ -515,11 +515,12 @@ def test_2430():
def test_2692():
document = fitz.Document(f'{scriptdir}/resources/2.pdf')
for page in document:
pix = pix = page.get_pixmap(clip=fitz.Rect(0,0,10,10))
pix = page.get_pixmap(clip=fitz.Rect(0,0,10,10))
dl = page.get_displaylist(annots=True)
pix = dl.get_pixmap(
matrix=fitz.Identity,
colorspace=fitz.csRGB,
alpha=False,
clip=fitz.Rect(0,0,10,10),
)

0 comments on commit 3ca9d3d

Please sign in to comment.