Skip to content

Commit 516368f

Browse files
Updates for release of 1.23.11.
1 parent 621d26e commit 516368f

File tree

6 files changed

+11
-4
lines changed

6 files changed

+11
-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.11
5051
- 1.23.10
5152
- 1.23.9
5253
- 1.23.9rc2

changes.txt

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

44

5+
**Changes in version 1.23.11 (2024-01-12)**
6+
7+
* Fixed some Pixmap construction bugs.
8+
* Fixed Pixmap.yres().
9+
10+
511
**Changes in version 1.23.10 (2024-01-12)**
612

713
* 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.10** features as of **2024-01-12 00:00:01**.
3+
This documentation covers **PyMuPDF v1.23.11** features as of **2024-01-12 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.10'
1075+
version = '1.23.11'
10761076
version_b = '1.23.9'
10771077

10781078
tag_python = None

src/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21724,7 +21724,7 @@ def int_rc(text):
2172421724
return int(text)
2172521725

2172621726
VersionFitz = "1.23.9" # MuPDF version.
21727-
VersionBind = "1.23.10" # PyMuPDF version.
21727+
VersionBind = "1.23.11" # PyMuPDF version.
2172821728
VersionDate = "2024-01-12 00:00:01"
2172921729
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
2173021730
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.10" # PyMuPDF version.
3+
VersionBind = "1.23.11" # PyMuPDF version.
44
VersionDate = "2024-01-12 00:00:01"
55
version = (VersionBind, VersionFitz, "20240112000001")
66
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])

0 commit comments

Comments
 (0)