Skip to content

Commit

Permalink
Updated version numbers and dates for release of 1.23.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-smith-artifex-com committed Dec 19, 2023
1 parent 6b0b0b4 commit 328f7ee
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Expand Up @@ -47,9 +47,9 @@ body:
label: PyMuPDF version
options:
-
- 1.23.8
- 1.23.7
- 1.23.6
- 1.23.5 or earlier
- 1.23.6 or earlier
- Built from source
description: |
* For example from `fitz.VersionBind`.
Expand Down
2 changes: 1 addition & 1 deletion docs/version.rst
@@ -1,6 +1,6 @@
----

This documentation covers **PyMuPDF v1.23.7** features as of **2023-11-30 00:00:01**.
This documentation covers **PyMuPDF v1.23.8** features as of **2023-12-19 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**.

6 changes: 3 additions & 3 deletions fitz/version.i
@@ -1,7 +1,7 @@
%pythoncode %{
VersionFitz = "1.23.7" # MuPDF version.
VersionBind = "1.23.7" # PyMuPDF version.
VersionDate = "2023-11-30 00:00:01"
version = (VersionBind, VersionFitz, "20231130000001")
VersionBind = "1.23.8" # PyMuPDF version.
VersionDate = "2023-12-19 00:00:01"
version = (VersionBind, VersionFitz, "20231219000001")
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])
%}
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -1184,7 +1184,7 @@ def sdist():
# We generate different wheels depending on g_flavour.
#

version = '1.23.7'
version = '1.23.8'
version_b = '1.23.7'

tag_python = None
Expand Down
4 changes: 2 additions & 2 deletions src/__init__.py
Expand Up @@ -21735,8 +21735,8 @@ class FitzDeprecation(DeprecationWarning):


VersionFitz = "1.23.7" # MuPDF version.
VersionBind = "1.23.7" # PyMuPDF version.
VersionDate = "2023-11-30 00:00:01"
VersionBind = "1.23.8" # PyMuPDF version.
VersionDate = "2023-12-19 00:00:01"
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
version = (VersionBind, VersionFitz, VersionDate2)
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])
Expand Down

0 comments on commit 328f7ee

Please sign in to comment.