Skip to content

Commit

Permalink
Update version and date and changelog for 1.23.14.
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-smith-artifex-com committed Jan 15, 2024
1 parent 49b4334 commit 96569bd
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ body:
label: PyMuPDF version
options:
-
- 1.23.14
- 1.23.13
- 1.23.12
- 1.23.11
Expand Down
12 changes: 12 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@ Change Log
==========


**Changes in version 1.23.14 (2024-01-15)**

* Bug fixes:

* **Fixed** `3038 <https://github.com/pymupdf/PyMuPDF/issues/3038>`_: JM_pixmap_from_display_list > Assertion Error : Checking for wrong type
* **Fixed** `3039 <https://github.com/pymupdf/PyMuPDF/issues/3039>`_: Issue with doc.close() not closing the document in PyMuPDF

* Other:

* Ensure valid "re" rectangles in `Page.get_drawings()` with derotated pages.


**Changes in version 1.23.13 (2024-01-15)**

* Bug fixes:
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.13** features as of **2024-01-15 00:00:01**.
This documentation covers **PyMuPDF v1.23.14** features as of **2024-01-15 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**.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,7 @@ def sdist():
# We generate different wheels depending on g_flavour.
#

version = '1.23.13'
version = '1.23.14'
version_b = '1.23.9'

tag_python = None
Expand Down
2 changes: 1 addition & 1 deletion src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21739,7 +21739,7 @@ def int_rc(text):
return int(text)

VersionFitz = "1.23.9" # MuPDF version.
VersionBind = "1.23.13" # PyMuPDF version.
VersionBind = "1.23.14" # PyMuPDF version.
VersionDate = "2024-01-15 00:00:01"
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
version = (VersionBind, VersionFitz, VersionDate2)
Expand Down
2 changes: 1 addition & 1 deletion src_classic/version.i
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
%pythoncode %{
VersionFitz = "1.23.9" # MuPDF version.
VersionBind = "1.23.13" # PyMuPDF version.
VersionBind = "1.23.14" # PyMuPDF version.
VersionDate = "2024-01-15 00:00:01"
version = (VersionBind, VersionFitz, "20240115000001")
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])
Expand Down

0 comments on commit 96569bd

Please sign in to comment.