File tree Expand file tree Collapse file tree 7 files changed +50
-8
lines changed Expand file tree Collapse file tree 7 files changed +50
-8
lines changed Original file line number Diff line number Diff line change 1
- # PyMuPDF 1.20.0
1
+ # PyMuPDF 1.20.1
2
2
3
3
![ logo] ( https://artifex.com/images/logos/py-mupdf-github-icon.png )
4
4
5
- Release date: June 16 , 2022
5
+ Release date: June 27 , 2022
6
6
7
7
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 )
8
8
Original file line number Diff line number Diff line change @@ -2,6 +2,27 @@ Change Log
2
2
===========
3
3
4
4
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
+
5
26
**Changes in Version 1.20.0**
6
27
7
28
This release uses ``MuPDF-1.20.0``, released 2022-06-15.
Original file line number Diff line number Diff line change @@ -2,6 +2,27 @@ Change Log
2
2
===========
3
3
4
4
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
+
5
26
**Changes in Version 1.20.0 **
6
27
7
28
This release uses ``MuPDF-1.20.0 ``, released 2022-06-15.
Original file line number Diff line number Diff line change 42
42
# built documents.
43
43
#
44
44
# The full version, including alpha/beta/rc tags.
45
- release = "1.20.0 "
45
+ release = "1.20.1 "
46
46
47
47
# The short X.Y version
48
48
version = release
Original file line number Diff line number Diff line change 1
1
Covered Version
2
2
--------------------
3
3
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 **.
5
5
6
6
.. 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.
Original file line number Diff line number Diff line change 1
1
%pythoncode %{
2
- VersionFitz = " 1.20.0 "
2
+ VersionFitz = " 1.20.1 "
3
3
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 " )
6
6
%}
Original file line number Diff line number Diff line change @@ -679,7 +679,7 @@ def get_mupdf():
679
679
680
680
setup (
681
681
name = "PyMuPDF" ,
682
- version = "1.20.0 " ,
682
+ version = "1.20.1 " ,
683
683
description = "Python bindings for the PDF toolkit and renderer MuPDF" ,
684
684
long_description = readme ,
685
685
long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments