Skip to content

Commit 5999e1f

Browse files
Update changelogs, version strings and release date for release of 1.20.1.
1 parent 3fe4ede commit 5999e1f

File tree

7 files changed

+50
-8
lines changed

7 files changed

+50
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# PyMuPDF 1.20.0
1+
# PyMuPDF 1.20.1
22

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

5-
Release date: June 16, 2022
5+
Release date: June 27, 2022
66

77
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)
88

changes.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@ Change Log
22
===========
33

44

5+
**Changes in Version 1.20.1**
6+
7+
* **Fixed** `#1724 <https://github.com/pymupdf/PyMuPDF/issues/1724>`_.
8+
Fix for building on FreeBSD.
9+
10+
* **Fixed** `#1771 <https://github.com/pymupdf/PyMuPDF/issues/1771>`_.
11+
`linkDest()` had a broken call to `re.match()`, introduced in 1.20.0.
12+
13+
* **Fixed** `#1751 <https://github.com/pymupdf/PyMuPDF/issues/1751>`_.
14+
`get_drawings()` and `get_cdrawings()` previously always returned with `closePath=False`.
15+
16+
* **Fixed** `#1645 <https://github.com/pymupdf/PyMuPDF/issues/1645>`_.
17+
Default FreeText annotation text color is now black.
18+
19+
* Improvements to sphinx-generated documentation:
20+
21+
* Use readthedocs theme with enhancements.
22+
* Renamed the `.txt` files to have `.rst` suffixes.
23+
24+
------
25+
526
**Changes in Version 1.20.0**
627

728
This release uses ``MuPDF-1.20.0``, released 2022-06-15.

docs/changes.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@ Change Log
22
===========
33

44

5+
**Changes in Version 1.20.1**
6+
7+
* **Fixed** `#1724 <https://github.com/pymupdf/PyMuPDF/issues/1724>`_.
8+
Fix for building on FreeBSD.
9+
10+
* **Fixed** `#1771 <https://github.com/pymupdf/PyMuPDF/issues/1771>`_.
11+
`linkDest()` had a broken call to `re.match()`, introduced in 1.20.0.
12+
13+
* **Fixed** `#1751 <https://github.com/pymupdf/PyMuPDF/issues/1751>`_.
14+
`get_drawings()` and `get_cdrawings()` previously always returned with `closePath=False`.
15+
16+
* **Fixed** `#1645 <https://github.com/pymupdf/PyMuPDF/issues/1645>`_.
17+
Default FreeText annotation text color is now black.
18+
19+
* Improvements to sphinx-generated documentation:
20+
21+
* Use readthedocs theme with enhancements.
22+
* Renamed the `.txt` files to have `.rst` suffixes.
23+
24+
------
25+
526
**Changes in Version 1.20.0**
627

728
This release uses ``MuPDF-1.20.0``, released 2022-06-15.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
# built documents.
4343
#
4444
# The full version, including alpha/beta/rc tags.
45-
release = "1.20.0"
45+
release = "1.20.1"
4646

4747
# The short X.Y version
4848
version = release

docs/version.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Covered Version
22
--------------------
33

4-
This documentation covers PyMuPDF v1.20.0 features as of **2022-06-16 00:00:01**.
4+
This documentation covers PyMuPDF v1.20.1 features as of **2022-06-27 00:00:01**.
55

66
.. 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.

fitz/version.i

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%pythoncode %{
2-
VersionFitz = "1.20.0"
2+
VersionFitz = "1.20.1"
33
VersionBind = "1.20.0"
4-
VersionDate = "2022-05-16 00:00:01"
5-
version = (VersionBind, VersionFitz, "20220516000001")
4+
VersionDate = "2022-06-27 00:00:01"
5+
version = (VersionBind, VersionFitz, "20220627000001")
66
%}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@ def get_mupdf():
679679

680680
setup(
681681
name="PyMuPDF",
682-
version="1.20.0",
682+
version="1.20.1",
683683
description="Python bindings for the PDF toolkit and renderer MuPDF",
684684
long_description=readme,
685685
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)