Skip to content

Commit 34661b3

Browse files
Updated version numbers for 1.23.12.
1 parent 5c90510 commit 34661b3

File tree

6 files changed

+10
-4
lines changed

6 files changed

+10
-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.12
5051
- 1.23.11
5152
- 1.23.10
5253
- 1.23.9

changes.txt

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

44

5+
**Changes in version 1.23.12 (2024-01-12)**
6+
7+
* * **Fixed** `3027 <https://github.com/pymupdf/PyMuPDF/issues/3027>`_: Page.get_text throws Attribute Error for 'parent'
8+
9+
510
**Changes in version 1.23.11 (2024-01-12)**
611

712
* Fixed some Pixmap construction bugs.

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

10781078
tag_python = None

src/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21734,7 +21734,7 @@ def int_rc(text):
2173421734
return int(text)
2173521735

2173621736
VersionFitz = "1.23.9" # MuPDF version.
21737-
VersionBind = "1.23.11" # PyMuPDF version.
21737+
VersionBind = "1.23.12" # PyMuPDF version.
2173821738
VersionDate = "2024-01-12 00:00:01"
2173921739
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
2174021740
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.11" # PyMuPDF version.
3+
VersionBind = "1.23.12" # 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)