File tree 7 files changed +59
-9
lines changed
7 files changed +59
-9
lines changed Original file line number Diff line number Diff line change 1
- # PyMuPDF 1.20.1
1
+ # PyMuPDF 1.20.2
2
2
3
3
![ logo] ( https://artifex.com/images/logos/py-mupdf-github-icon.png )
4
4
5
- Release date: June 27 , 2022
5
+ Release date: August 13 , 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,31 @@ Change Log
2
2
===========
3
3
4
4
5
+ **Changes in Version 1.20.2**
6
+
7
+ * This release uses ``MuPDF-1.20.3``.
8
+
9
+ * **Fixed** `#1787 <https://github.com/pymupdf/PyMuPDF/issues/1787>`_.
10
+ Fix linking issues on Unix systems.
11
+
12
+ * **Fixed** `#1824 <https://github.com/pymupdf/PyMuPDF/issues/1824>`_.
13
+ SegFault when applying redactions overlapping a transparent image. (Fixed
14
+ in ``MuPDF-1.20.3``.)
15
+
16
+ * Improvements to documentation:
17
+
18
+ * Improved information about building from source in ``docs/installation.rst``.
19
+ * Clarified memory allocation setting ``JM_MEMORY` in ``docs/tools.rst``.
20
+ * Fixed link to PDF Reference manual in ``docs/app3.rst``.
21
+ * Fixed building of html documentation on OpenBSD.
22
+ * Moved old ``docs/faq.rst`` into separate ``docs/recipes-*`` files.
23
+
24
+ * Removed some unused files and directories:
25
+
26
+ * ``installation/``
27
+ * ``docs/wheelnames.txt``
28
+
29
+
5
30
**Changes in Version 1.20.1**
6
31
7
32
* **Fixed** `#1724 <https://github.com/pymupdf/PyMuPDF/issues/1724>`_.
Original file line number Diff line number Diff line change @@ -2,6 +2,31 @@ Change Log
2
2
===========
3
3
4
4
5
+ **Changes in Version 1.20.2 **
6
+
7
+ * This release uses ``MuPDF-1.20.3 ``.
8
+
9
+ * **Fixed ** `#1787 <https://github.com/pymupdf/PyMuPDF/issues/1787 >`_.
10
+ Fix linking issues on Unix systems.
11
+
12
+ * **Fixed ** `#1824 <https://github.com/pymupdf/PyMuPDF/issues/1824 >`_.
13
+ SegFault when applying redactions overlapping a transparent image. (Fixed
14
+ in ``MuPDF-1.20.3 ``.)
15
+
16
+ * Improvements to documentation:
17
+
18
+ * Improved information about building from source in ``docs/installation.rst ``.
19
+ * Clarified memory allocation setting ``JM_MEMORY` in ``docs/tools.rst ``.
20
+ * Fixed link to PDF Reference manual in ``docs/app3.rst ``.
21
+ * Fixed building of html documentation on OpenBSD.
22
+ * Moved old ``docs/faq.rst `` into separate ``docs/recipes-* `` files.
23
+
24
+ * Removed some unused files and directories:
25
+
26
+ * ``installation/ ``
27
+ * ``docs/wheelnames.txt ``
28
+
29
+
5
30
**Changes in Version 1.20.1 **
6
31
7
32
* **Fixed ** `#1724 <https://github.com/pymupdf/PyMuPDF/issues/1724 >`_.
Original file line number Diff line number Diff line change 43
43
# built documents.
44
44
#
45
45
# The full version, including alpha/beta/rc tags.
46
- release = "1.20.1 "
46
+ release = "1.20.2 "
47
47
48
48
# The short X.Y version
49
49
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.1 features as of **2022-06-27 00:00:01 **.
4
+ This documentation covers PyMuPDF v1.20.2 features as of **2022-08-13 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.1 "
3
- VersionBind = " 1.20.0 "
4
- VersionDate = " 2022-06-27 00:00:01"
5
- version = (VersionBind, VersionFitz, " 20220627000001 " )
2
+ VersionFitz = " 1.20.3 "
3
+ VersionBind = " 1.20.2 "
4
+ VersionDate = " 2022-08-13 00:00:01"
5
+ version = (VersionBind, VersionFitz, " 20220813000001 " )
6
6
%}
Original file line number Diff line number Diff line change @@ -689,7 +689,7 @@ def get_mupdf():
689
689
690
690
setup (
691
691
name = "PyMuPDF" ,
692
- version = "1.20.1 " ,
692
+ version = "1.20.2 " ,
693
693
description = "Python bindings for the PDF toolkit and renderer MuPDF" ,
694
694
long_description = readme ,
695
695
long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments