Skip to content

Commit 96569bd

Browse files
Update version and date and changelog for 1.23.14.
1 parent 49b4334 commit 96569bd

File tree

6 files changed

+17
-4
lines changed

6 files changed

+17
-4
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ body:
4747
label: PyMuPDF version
4848
options:
4949
-
50+
- 1.23.14
5051
- 1.23.13
5152
- 1.23.12
5253
- 1.23.11

changes.txt

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

44

5+
**Changes in version 1.23.14 (2024-01-15)**
6+
7+
* Bug fixes:
8+
9+
* **Fixed** `3038 <https://github.com/pymupdf/PyMuPDF/issues/3038>`_: JM_pixmap_from_display_list > Assertion Error : Checking for wrong type
10+
* **Fixed** `3039 <https://github.com/pymupdf/PyMuPDF/issues/3039>`_: Issue with doc.close() not closing the document in PyMuPDF
11+
12+
* Other:
13+
14+
* Ensure valid "re" rectangles in `Page.get_drawings()` with derotated pages.
15+
16+
517
**Changes in version 1.23.13 (2024-01-15)**
618

719
* Bug fixes:

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

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1072,7 +1072,7 @@ def sdist():
10721072
# We generate different wheels depending on g_flavour.
10731073
#
10741074

1075-
version = '1.23.13'
1075+
version = '1.23.14'
10761076
version_b = '1.23.9'
10771077

10781078
tag_python = None

src/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21739,7 +21739,7 @@ def int_rc(text):
2173921739
return int(text)
2174021740

2174121741
VersionFitz = "1.23.9" # MuPDF version.
21742-
VersionBind = "1.23.13" # PyMuPDF version.
21742+
VersionBind = "1.23.14" # PyMuPDF version.
2174321743
VersionDate = "2024-01-15 00:00:01"
2174421744
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
2174521745
version = (VersionBind, VersionFitz, VersionDate2)

src_classic/version.i

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%pythoncode %{
22
VersionFitz = "1.23.9" # MuPDF version.
3-
VersionBind = "1.23.13" # PyMuPDF version.
3+
VersionBind = "1.23.14" # PyMuPDF version.
44
VersionDate = "2024-01-15 00:00:01"
55
version = (VersionBind, VersionFitz, "20240115000001")
66
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])

0 commit comments

Comments
 (0)