Skip to content

Commit

Permalink
Update changelogs, version strings and release date for release of 1.…
Browse files Browse the repository at this point in the history
…20.1.
  • Loading branch information
julian-smith-artifex-com committed Jun 27, 2022
1 parent 3fe4ede commit 5999e1f
Show file tree
Hide file tree
Showing 7 changed files with 50 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
21 changes: 21 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@ Change Log
===========


**Changes in Version 1.20.1**

* **Fixed** `#1724 <https://github.com/pymupdf/PyMuPDF/issues/1724>`_.
Fix for building on FreeBSD.

* **Fixed** `#1771 <https://github.com/pymupdf/PyMuPDF/issues/1771>`_.
`linkDest()` had a broken call to `re.match()`, introduced in 1.20.0.

* **Fixed** `#1751 <https://github.com/pymupdf/PyMuPDF/issues/1751>`_.
`get_drawings()` and `get_cdrawings()` previously always returned with `closePath=False`.

* **Fixed** `#1645 <https://github.com/pymupdf/PyMuPDF/issues/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.
Expand Down
21 changes: 21 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@ Change Log
===========


**Changes in Version 1.20.1**

* **Fixed** `#1724 <https://github.com/pymupdf/PyMuPDF/issues/1724>`_.
Fix for building on FreeBSD.

* **Fixed** `#1771 <https://github.com/pymupdf/PyMuPDF/issues/1771>`_.
`linkDest()` had a broken call to `re.match()`, introduced in 1.20.0.

* **Fixed** `#1751 <https://github.com/pymupdf/PyMuPDF/issues/1751>`_.
`get_drawings()` and `get_cdrawings()` previously always returned with `closePath=False`.

* **Fixed** `#1645 <https://github.com/pymupdf/PyMuPDF/issues/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.
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
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 @@
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.
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.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")
%}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 5999e1f

Please sign in to comment.