Skip to content

Commit 7ece7c3

Browse files
Updated versions, dates and changelog for release of 1.23.15.
1 parent 1eecf9c commit 7ece7c3

File tree

6 files changed

+20
-9
lines changed

6 files changed

+20
-9
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ body:
4747
label: PyMuPDF version
4848
options:
4949
-
50+
- 1.23.15
5051
- 1.23.14
5152
- 1.23.13
5253
- 1.23.12
@@ -55,8 +56,7 @@ body:
5556
- 1.23.9
5657
- 1.23.9rc2
5758
- 1.23.9rc1
58-
- 1.23.8
59-
- 1.23.7 or earlier
59+
- 1.23.8 or earlier
6060
- Built from source
6161
description: |
6262
* For example from `fitz.VersionBind`.

changes.txt

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

44

5+
**Changes in version 1.23.15 (2024-01-16)**
6+
7+
* Bug fixes:
8+
9+
* **Fixed** `3051 <https://github.com/pymupdf/PyMuPDF/issues/3051>`_: Fix for Pixmap.set_pixel().
10+
11+
* Other:
12+
13+
* Improved docs for Page.find_tables().
14+
15+
516
**Changes in version 1.23.14 (2024-01-15)**
617

718
* 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.14** features as of **2024-01-15 00:00:01**.
3+
This documentation covers **PyMuPDF v1.23.15** features as of **2024-01-16 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.14'
1075+
version = '1.23.15'
10761076
version_b = '1.23.9'
10771077

10781078
tag_python = None

src/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21754,8 +21754,8 @@ def int_rc(text):
2175421754
return int(text)
2175521755

2175621756
VersionFitz = "1.23.9" # MuPDF version.
21757-
VersionBind = "1.23.14" # PyMuPDF version.
21758-
VersionDate = "2024-01-15 00:00:01"
21757+
VersionBind = "1.23.15" # PyMuPDF version.
21758+
VersionDate = "2024-01-16 00:00:01"
2175921759
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
2176021760
version = (VersionBind, VersionFitz, VersionDate2)
2176121761
pymupdf_version_tuple = tuple( [int_rc(i) for i in VersionBind.split('.')])

src_classic/version.i

+3-3
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.14" # PyMuPDF version.
4-
VersionDate = "2024-01-15 00:00:01"
5-
version = (VersionBind, VersionFitz, "20240115000001")
3+
VersionBind = "1.23.15" # PyMuPDF version.
4+
VersionDate = "2024-01-16 00:00:01"
5+
version = (VersionBind, VersionFitz, "20240116000001")
66
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])
77
%}

0 commit comments

Comments
 (0)