Skip to content

Commit e9c0807

Browse files
Various updates to docs.
1 parent 004d26b commit e9c0807

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

README.md

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

3-
![logo](https://artifex.com/images/logos/py-mupdf-github-icon.png?raw=True)
3+
![logo](https://artifex.com/images/logos/py-mupdf-github-icon.png)
44

5-
Release date: June 6, 2022
5+
Release date: June 16, 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

@@ -11,7 +11,7 @@ On **[PyPI](https://pypi.org/project/PyMuPDF)** since August 2016: [![Downloads]
1111

1212
# Introduction
1313

14-
PyMuPDF (current version 1.20.0) is a Python binding with support for [MuPDF](https://mupdf.com/) (current version 1.20.*), a lightweight PDF, XPS, and eBook viewer, renderer, and toolkit, which is maintained and developed by Artifex Software, Inc.
14+
PyMuPDF adds Python bindings and abstractions to [MuPDF](https://mupdf.com/), a lightweight PDF, XPS, and eBook viewer, renderer, and toolkit. Both PyMuPDF and MuPDF are maintained and developed by Artifex Software, Inc.
1515

1616
MuPDF can access files in PDF, XPS, OpenXPS, CBZ, EPUB and FB2 (eBooks) formats, and it is known for its top performance and exceptional rendering quality.
1717

changes.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@ Change Log
55

66
**Changes in Version 1.20.0**
77

8-
This release has minimal functional changes, to work with ``MuPDF-1.20``.
8+
This release uses ``MuPDF-1.20.0``, released 2022-06-15.
99

1010
* Cope with new MuPDF link uri format, changed from ``#<int>,<int>,<int>`` to ``#page=<int>&zoom=<float>,<float>,<float>``.
1111

1212
* In ``tests/test_insertpdf.py``, use new reference output ``joined-1.20.pdf``. We also check that new output values are approximately the same as the old ones.
1313

1414
* **Fixed** `#1738 <https://github.com/pymupdf/PyMuPDF/issues/1738>`_. Leak of `pdf_graft_map`.
15+
Also fixed a SEGV issue that this seemed to expose, caused by incorrect freeing of underlying fz_document.
1516

1617
* **Fixed** `#1733 <https://github.com/pymupdf/PyMuPDF/issues/1733>`_. Fixed ownership of `Annotation.get_pixmap()`.
1718

docs/changes.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@ Change Log
55

66
**Changes in Version 1.20.0**
77

8-
This release has minimal functional changes, to work with ``MuPDF-1.20``.
8+
This release uses ``MuPDF-1.20.0``, released 2022-06-15.
99

1010
* Cope with new MuPDF link uri format, changed from ``#<int>,<int>,<int>`` to ``#page=<int>&zoom=<float>,<float>,<float>``.
1111

1212
* In ``tests/test_insertpdf.py``, use new reference output ``joined-1.20.pdf``. We also check that new output values are approximately the same as the old ones.
1313

1414
* **Fixed** `#1738 <https://github.com/pymupdf/PyMuPDF/issues/1738>`_. Leak of `pdf_graft_map`.
15+
Also fixed a SEGV issue that this seemed to expose, caused by incorrect freeing of underlying fz_document.
1516

1617
* **Fixed** `#1733 <https://github.com/pymupdf/PyMuPDF/issues/1733>`_. Fixed ownership of `Annotation.get_pixmap()`.
1718

fitz/version.i

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

0 commit comments

Comments
 (0)