From f26c4b55feb3a7c7843a0e0486c8506ea109a6a1 Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Wed, 26 Apr 2023 09:09:42 +0100 Subject: [PATCH] Update version numners and dates for release 1.22.2. --- README.md | 4 ++-- changes.txt | 9 +++++++++ docs/version.rst | 2 +- fitz/version.i | 6 +++--- setup.py | 2 +- 5 files changed, 16 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 46eff8c7b..091b9e264 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -# PyMuPDF 1.22.1 +# PyMuPDF 1.22.2 ![logo](https://artifex.com/images/logos/py-mupdf-github-icon.png) -Release date: April 18, 2023 +Release date: April 26, 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) diff --git a/changes.txt b/changes.txt index 21b0522f3..e496a98a9 100644 --- a/changes.txt +++ b/changes.txt @@ -2,6 +2,15 @@ Change Log ========== +**Changes in version 1.22.2 (2023-04-26)** + +* This release uses ``MuPDF-1.22.0``. + +* Bug fixes: + + * **Fixed** `#2369 `_: Image extraction bugs with newer versions + + **Changes in version 1.22.1 (2023-04-18)** * This release uses ``MuPDF-1.22.0``. diff --git a/docs/version.rst b/docs/version.rst index d035fb6d5..c2cb908ea 100644 --- a/docs/version.rst +++ b/docs/version.rst @@ -1,6 +1,6 @@ ---- -This documentation covers **PyMuPDF v1.22.1** features as of **2023-04-18 00:00:01**. +This documentation covers **PyMuPDF v1.22.2** features as of **2023-04-26 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**. diff --git a/fitz/version.i b/fitz/version.i index 4884dcf0d..0671c57dc 100644 --- a/fitz/version.i +++ b/fitz/version.i @@ -1,6 +1,6 @@ %pythoncode %{ VersionFitz = "1.22.0" # MuPDF version. -VersionBind = "1.22.1" # PyMuPDF version. -VersionDate = "2023-04-18 00:00:01" -version = (VersionBind, VersionFitz, "20230418000001") +VersionBind = "1.22.2" # PyMuPDF version. +VersionDate = "2023-04-26 00:00:01" +version = (VersionBind, VersionFitz, "20230426000001") %} diff --git a/setup.py b/setup.py index 313bb0ff2..1fc1f8639 100644 --- a/setup.py +++ b/setup.py @@ -889,7 +889,7 @@ def write_git(name, directory): setup( name="PyMuPDF", - version="1.22.1", + version="1.22.2", description="Python bindings for the PDF toolkit and renderer MuPDF", long_description=readme, long_description_content_type="text/markdown",