Skip to content

Commit

Permalink
Update changelog, version and date for 1.23.18 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-smith-artifex-com committed Jan 23, 2024
1 parent 8f5bc2b commit 5d6a7db
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 7 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.18
- 1.23.17
- 1.23.16
- 1.23.15
Expand Down
12 changes: 12 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@ Change Log
==========


**Changes in version 1.23.18 (2024-01-23)**

* Bug fixes:

* **Fixed** `3081 <https://github.com/pymupdf/PyMuPDF/issues/3081>`_: doc.close() not closing the document

* Other:

* Reduced size of sdist to fit on pypi.org (by reducing size of two test files).
* Fix `Annot.file_info()` if no `Desc` item.


**Changes in version 1.23.17 (2024-01-22)**

* Bug fixes:
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.17** features as of **2024-01-22 00:00:01**.
This documentation covers **PyMuPDF v1.23.18** features as of **2024-01-23 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.17'
version = '1.23.18'
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 @@ -21748,8 +21748,8 @@ def int_rc(text):
return int(text)

VersionFitz = "1.23.9" # MuPDF version.
VersionBind = "1.23.17" # PyMuPDF version.
VersionDate = "2024-01-22 00:00:01"
VersionBind = "1.23.18" # PyMuPDF version.
VersionDate = "2024-01-23 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.17" # PyMuPDF version.
VersionDate = "2024-01-22 00:00:01"
version = (VersionBind, VersionFitz, "20240122000001")
VersionBind = "1.23.18" # PyMuPDF version.
VersionDate = "2024-01-23 00:00:01"
version = (VersionBind, VersionFitz, "20240123000001")
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])
%}

0 comments on commit 5d6a7db

Please sign in to comment.