Skip to content

Commit 309223a

Browse files
Update changelogs, version strings and release date for release of 1.20.2.
1 parent 6efca61 commit 309223a

File tree

7 files changed

+59
-9
lines changed

7 files changed

+59
-9
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# PyMuPDF 1.20.1
1+
# PyMuPDF 1.20.2
22

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

5-
Release date: June 27, 2022
5+
Release date: August 13, 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

+25
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@ Change Log
22
===========
33

44

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+
530
**Changes in Version 1.20.1**
631

732
* **Fixed** `#1724 <https://github.com/pymupdf/PyMuPDF/issues/1724>`_.

docs/changes.rst

+25
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@ Change Log
22
===========
33

44

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+
530
**Changes in Version 1.20.1**
631

732
* **Fixed** `#1724 <https://github.com/pymupdf/PyMuPDF/issues/1724>`_.

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
# built documents.
4444
#
4545
# The full version, including alpha/beta/rc tags.
46-
release = "1.20.1"
46+
release = "1.20.2"
4747

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

docs/version.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Covered Version
22
--------------------
33

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%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")
66
%}

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ def get_mupdf():
689689

690690
setup(
691691
name="PyMuPDF",
692-
version="1.20.1",
692+
version="1.20.2",
693693
description="Python bindings for the PDF toolkit and renderer MuPDF",
694694
long_description=readme,
695695
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)