Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated versions, dates and changelog for release of 1.23.15. #3052

Merged
merged 1 commit into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 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.15
- 1.23.14
- 1.23.13
- 1.23.12
Expand All @@ -55,8 +56,7 @@ body:
- 1.23.9
- 1.23.9rc2
- 1.23.9rc1
- 1.23.8
- 1.23.7 or earlier
- 1.23.8 or earlier
- Built from source
description: |
* For example from `fitz.VersionBind`.
Expand Down
11 changes: 11 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@ Change Log
==========


**Changes in version 1.23.15 (2024-01-16)**

* Bug fixes:

* **Fixed** `3051 <https://github.com/pymupdf/PyMuPDF/issues/3051>`_: Fix for Pixmap.set_pixel().

* Other:

* Improved docs for Page.find_tables().


**Changes in version 1.23.14 (2024-01-15)**

* 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.14** features as of **2024-01-15 00:00:01**.
This documentation covers **PyMuPDF v1.23.15** features as of **2024-01-16 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.14'
version = '1.23.15'
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 @@ -21754,8 +21754,8 @@ def int_rc(text):
return int(text)

VersionFitz = "1.23.9" # MuPDF version.
VersionBind = "1.23.14" # PyMuPDF version.
VersionDate = "2024-01-15 00:00:01"
VersionBind = "1.23.15" # PyMuPDF version.
VersionDate = "2024-01-16 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.14" # PyMuPDF version.
VersionDate = "2024-01-15 00:00:01"
version = (VersionBind, VersionFitz, "20240115000001")
VersionBind = "1.23.15" # PyMuPDF version.
VersionDate = "2024-01-16 00:00:01"
version = (VersionBind, VersionFitz, "20240116000001")
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])
%}
Loading