Skip to content

Commit

Permalink
Updates for release of 1.23.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-smith-artifex-com committed Jan 12, 2024
1 parent 9466bec commit dfea000
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ body:
label: PyMuPDF version
options:
-
- 1.23.10
- 1.23.9
- 1.23.9rc2
- 1.23.9rc1
Expand Down
4 changes: 2 additions & 2 deletions changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ Change Log
==========


**Changes in next release**
**Changes in version 1.23.10 (2024-01-12)**

* Bug fixes:

* **Fixed** `3020 <https://github.com/pymupdf/PyMuPDF/issues/3020>`_: Can't resize a PixMap

* Other:

* Fixed Page.delete_image().
* Check use of mupdf.fz_install_load_system_font_funcs() with MuPDF-1.24.0 and later.


**Changes in version 1.23.9 (2024-01-11)**
Expand Down
2 changes: 1 addition & 1 deletion docs/version.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
----

This documentation covers **PyMuPDF v1.23.9** features as of **2024-01-11 00:00:01**.
This documentation covers **PyMuPDF v1.23.10** features as of **2024-01-12 00:00:01**.

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**.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,7 @@ def sdist():
# We generate different wheels depending on g_flavour.
#

version = '1.23.9'
version = '1.23.10'
version_b = '1.23.9'

tag_python = None
Expand Down
4 changes: 2 additions & 2 deletions src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21714,8 +21714,8 @@ def int_rc(text):
return int(text)

VersionFitz = "1.23.9" # MuPDF version.
VersionBind = "1.23.9" # PyMuPDF version.
VersionDate = "2024-01-11 00:00:01"
VersionBind = "1.23.10" # PyMuPDF version.
VersionDate = "2024-01-12 00:00:01"
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
version = (VersionBind, VersionFitz, VersionDate2)
pymupdf_version_tuple = tuple( [int_rc(i) for i in VersionBind.split('.')])
Expand Down
6 changes: 3 additions & 3 deletions src_classic/version.i
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%pythoncode %{
VersionFitz = "1.23.9" # MuPDF version.
VersionBind = "1.23.9" # PyMuPDF version.
VersionDate = "2024-01-11 00:00:01"
version = (VersionBind, VersionFitz, "20240111000001")
VersionBind = "1.23.10" # PyMuPDF version.
VersionDate = "2024-01-12 00:00:01"
version = (VersionBind, VersionFitz, "20240112000001")
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])
%}

0 comments on commit dfea000

Please sign in to comment.