Skip to content

Commit e97b5bb

Browse files
Update changelog, versions and dates for release of 1.23.16.
1 parent aaa9df0 commit e97b5bb

File tree

6 files changed

+21
-7
lines changed

6 files changed

+21
-7
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ body:
4747
label: PyMuPDF version
4848
options:
4949
-
50+
- 1.23.16
5051
- 1.23.15
5152
- 1.23.14
5253
- 1.23.13

changes.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@ Change Log
22
==========
33

44

5+
**Changes in version 1.23.16 (2024-01-18)**
6+
7+
* Bug fixes:
8+
9+
* **Fixed** `3058 <https://github.com/pymupdf/PyMuPDF/issues/3058>`_: Pixmap created from CMYK JPEG delivers RGB format
10+
11+
* Other:
12+
13+
* In table detection strategy "lines_strict", exclude fill-only vector graphics.
14+
* Fixed sysinstall test failure.
15+
* In documentation, update feature matrix with item about text writing.
16+
17+
518
**Changes in version 1.23.15 (2024-01-16)**
619

720
* Bug fixes:

docs/version.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
----
22

3-
This documentation covers **PyMuPDF v1.23.15** features as of **2024-01-16 00:00:01**.
3+
This documentation covers **PyMuPDF v1.23.16** features as of **2024-01-18 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

Lines changed: 1 addition & 1 deletion
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.15'
1075+
version = '1.23.16'
10761076
version_b = '1.23.9'
10771077

10781078
tag_python = None

src/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21756,8 +21756,8 @@ def int_rc(text):
2175621756
return int(text)
2175721757

2175821758
VersionFitz = "1.23.9" # MuPDF version.
21759-
VersionBind = "1.23.15" # PyMuPDF version.
21760-
VersionDate = "2024-01-16 00:00:01"
21759+
VersionBind = "1.23.16" # PyMuPDF version.
21760+
VersionDate = "2024-01-18 00:00:01"
2176121761
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
2176221762
version = (VersionBind, VersionFitz, VersionDate2)
2176321763
pymupdf_version_tuple = tuple( [int_rc(i) for i in VersionBind.split('.')])

src_classic/version.i

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%pythoncode %{
22
VersionFitz = "1.23.9" # MuPDF version.
3-
VersionBind = "1.23.15" # PyMuPDF version.
4-
VersionDate = "2024-01-16 00:00:01"
5-
version = (VersionBind, VersionFitz, "20240116000001")
3+
VersionBind = "1.23.16" # PyMuPDF version.
4+
VersionDate = "2024-01-18 00:00:01"
5+
version = (VersionBind, VersionFitz, "20240118000001")
66
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])
77
%}

0 commit comments

Comments
 (0)