Skip to content

Commit

Permalink
Update version numbers and dates for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-smith-artifex-com committed Apr 18, 2023
1 parent 2a56ba4 commit 858d023
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# PyMuPDF 1.22.0
# PyMuPDF 1.22.1

![logo](https://artifex.com/images/logos/py-mupdf-github-icon.png)


Release date: April 14, 2023
Release date: April 18, 2023

On **[PyPI](https://pypi.org/project/PyMuPDF)** since August 2016: [![Downloads](https://static.pepy.tech/personalized-badge/pymupdf?period=total&units=international_system&left_color=black&right_color=orange&left_text=Downloads)](https://pepy.tech/project/pymupdf)

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.22.1 (2023-04-18)**

* This release uses ``MuPDF-1.22.0``.

* Bug fixes:

* **Fixed** `#2345 <https://github.com/pymupdf/PyMuPDF/issues/2345>`_: Turn off print statements in utils.py
* **Fixed** `#2348 <https://github.com/pymupdf/PyMuPDF/issues/2348>`_: extract_image returns an extension "flate" instead of "png"
* **Fixed** `#2350 <https://github.com/pymupdf/PyMuPDF/issues/2350>`_: Can not make widget (checkbox) to read-only by adding flags PDF_FIELD_IS_READ_ONLY
* **Fixed** `#2355 <https://github.com/pymupdf/PyMuPDF/issues/2355>`_: 1.22.0 error when using get_toc (AttributeError: 'SwigPyObject' object has no attribute)


**Changes in version 1.22.0 (2023-04-14)**

* This release uses ``MuPDF-1.22.0``.
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.22.0** features as of **2023-04-14 00:00:01**.
This documentation covers **PyMuPDF v1.22.1** features as of **2023-04-18 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
%pythoncode %{
VersionFitz = "1.22.0" # MuPDF version.
VersionBind = "1.22.0" # PyMuPDF version.
VersionDate = "2023-04-14 00:00:01"
version = (VersionBind, VersionFitz, "20230414000001")
VersionBind = "1.22.1" # PyMuPDF version.
VersionDate = "2023-04-18 00:00:01"
version = (VersionBind, VersionFitz, "20230418000001")
%}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -876,7 +876,7 @@ def write_git(name, directory):

setup(
name="PyMuPDF",
version="1.22.0",
version="1.22.1",
description="Python bindings for the PDF toolkit and renderer MuPDF",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 858d023

Please sign in to comment.