From 5999e1fb94fd5ee0fb6b1bda0de553001b737a31 Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Fri, 24 Jun 2022 17:38:31 +0100 Subject: [PATCH] Update changelogs, version strings and release date for release of 1.20.1. --- README.md | 4 ++-- changes.txt | 21 +++++++++++++++++++++ docs/changes.rst | 21 +++++++++++++++++++++ docs/conf.py | 2 +- docs/version.rst | 2 +- fitz/version.i | 6 +++--- setup.py | 2 +- 7 files changed, 50 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 44abf4179..299a2b33d 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# PyMuPDF 1.20.0 +# PyMuPDF 1.20.1 ![logo](https://artifex.com/images/logos/py-mupdf-github-icon.png) -Release date: June 16, 2022 +Release date: June 27, 2022 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 846e90b5a..5c83c0a27 100644 --- a/changes.txt +++ b/changes.txt @@ -2,6 +2,27 @@ Change Log =========== +**Changes in Version 1.20.1** + +* **Fixed** `#1724 `_. + Fix for building on FreeBSD. + +* **Fixed** `#1771 `_. + `linkDest()` had a broken call to `re.match()`, introduced in 1.20.0. + +* **Fixed** `#1751 `_. + `get_drawings()` and `get_cdrawings()` previously always returned with `closePath=False`. + +* **Fixed** `#1645 `_. + Default FreeText annotation text color is now black. + +* Improvements to sphinx-generated documentation: + + * Use readthedocs theme with enhancements. + * Renamed the `.txt` files to have `.rst` suffixes. + +------ + **Changes in Version 1.20.0** This release uses ``MuPDF-1.20.0``, released 2022-06-15. diff --git a/docs/changes.rst b/docs/changes.rst index 846e90b5a..5c83c0a27 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -2,6 +2,27 @@ Change Log =========== +**Changes in Version 1.20.1** + +* **Fixed** `#1724 `_. + Fix for building on FreeBSD. + +* **Fixed** `#1771 `_. + `linkDest()` had a broken call to `re.match()`, introduced in 1.20.0. + +* **Fixed** `#1751 `_. + `get_drawings()` and `get_cdrawings()` previously always returned with `closePath=False`. + +* **Fixed** `#1645 `_. + Default FreeText annotation text color is now black. + +* Improvements to sphinx-generated documentation: + + * Use readthedocs theme with enhancements. + * Renamed the `.txt` files to have `.rst` suffixes. + +------ + **Changes in Version 1.20.0** This release uses ``MuPDF-1.20.0``, released 2022-06-15. diff --git a/docs/conf.py b/docs/conf.py index c52fbe9df..f35a3aaec 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -42,7 +42,7 @@ # built documents. # # The full version, including alpha/beta/rc tags. -release = "1.20.0" +release = "1.20.1" # The short X.Y version version = release diff --git a/docs/version.rst b/docs/version.rst index 8d58bd24b..36e7bfc2f 100644 --- a/docs/version.rst +++ b/docs/version.rst @@ -1,6 +1,6 @@ Covered Version -------------------- -This documentation covers PyMuPDF v1.20.0 features as of **2022-06-16 00:00:01**. +This documentation covers PyMuPDF v1.20.1 features as of **2022-06-27 00:00:01**. .. note:: 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 1fd2128f1..b438c6208 100644 --- a/fitz/version.i +++ b/fitz/version.i @@ -1,6 +1,6 @@ %pythoncode %{ -VersionFitz = "1.20.0" +VersionFitz = "1.20.1" VersionBind = "1.20.0" -VersionDate = "2022-05-16 00:00:01" -version = (VersionBind, VersionFitz, "20220516000001") +VersionDate = "2022-06-27 00:00:01" +version = (VersionBind, VersionFitz, "20220627000001") %} diff --git a/setup.py b/setup.py index e36cb6b5e..3a4a23c89 100644 --- a/setup.py +++ b/setup.py @@ -679,7 +679,7 @@ def get_mupdf(): setup( name="PyMuPDF", - version="1.20.0", + version="1.20.1", description="Python bindings for the PDF toolkit and renderer MuPDF", long_description=readme, long_description_content_type="text/markdown",