Skip to content

Commit

Permalink
Update changelog, version numbers and dates for release 1.23.26.
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-smith-artifex-com committed Feb 29, 2024
1 parent 9552f5e commit a868c0a
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 8 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.26
- 1.23.25
- 1.23.24
- 1.23.23
Expand Down
14 changes: 13 additions & 1 deletion changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,25 @@ Change Log
==========


**Changes in version 1.23. ()**
**Changes in version 1.23.26 (2024-02-29)**

* Fixed issues:

* **Fixed** `3199 <https://github.com/pymupdf/PyMuPDF/issues/3199>`_: Add entry_points to setuptools configuration to provide command-line console scripts
* **Fixed** `3209 <https://github.com/pymupdf/PyMuPDF/issues/3209>`_: Empty vertices in ink annotation

* Other:

* Improvements to table detection:

* Improved check for empty tables, fixes bugs when determining table headers.
* Improved computation of enveloping vector graphic rectangles.
* Ignore more meaningless "pseudo" tables

* Install command-line 'pymupdf' command that runs fitz/__main__.py.
* Don't overwrite MuPDF's config.h when building on non-Windows.
* Fix `Story` constructor's `archive` arg to match docs - now accepts a single `Archive` constructor arg.
* Do not include MuPDF source in sdist; will be downloaded automatically when building.


**Changes in version 1.23.25 (2024-02-20)**
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.25** features as of **2024-02-20 00:00:01**.
This documentation covers **PyMuPDF v1.23.26** features as of **2024-02-29 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 @@ -1094,7 +1094,7 @@ def sdist():
# We generate different wheels depending on g_flavour.
#

version = '1.23.25'
version = '1.23.26'
version_b = '1.23.22'

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 @@ -21730,8 +21730,8 @@ def int_rc(text):
return int(text)

VersionFitz = "1.23.10" # MuPDF version.
VersionBind = "1.23.25" # PyMuPDF version.
VersionDate = "2024-02-20 00:00:01"
VersionBind = "1.23.26" # PyMuPDF version.
VersionDate = "2024-02-29 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.10" # MuPDF version.
VersionBind = "1.23.25" # PyMuPDF version.
VersionDate = "2024-02-20 00:00:01"
version = (VersionBind, VersionFitz, "20240220000001")
VersionBind = "1.23.26" # PyMuPDF version.
VersionDate = "2024-02-29 00:00:01"
version = (VersionBind, VersionFitz, "20240229000001")
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])
%}

0 comments on commit a868c0a

Please sign in to comment.