Skip to content

Commit c3179a8

Browse files
committed
Ugrade to patch version 1.14.2
1 parent d4978ac commit c3179a8

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PyMuPDF 1.14.1
1+
# PyMuPDF 1.14.2
22

33
![logo](https://github.com/rk700/PyMuPDF/blob/master/demo/pymupdf.jpg)
44

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

1515
# Introduction
1616

17-
This is **version 1.14.1 of PyMuPDF (formerly python-fitz)**, a Python binding with support for [MuPDF 1.14.x](http://mupdf.com/) - "a lightweight PDF, XPS, and E-book viewer".
17+
This is **version 1.14.2 of PyMuPDF (formerly python-fitz)**, a Python binding with support for [MuPDF 1.14.x](http://mupdf.com/) - "a lightweight PDF, XPS, and E-book viewer".
1818

1919
MuPDF can access files in PDF, XPS, OpenXPS, CBZ, EPUB and FB2 (e-books) formats, and it is known for its top performance and high rendering quality.
2020

doc/PyMuPDF.pdf

17.2 KB
Binary file not shown.

doc/html.zip

8.01 KB
Binary file not shown.

fitz/fitz.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,9 @@ class _object:
106106

107107

108108
VersionFitz = "1.14.0"
109-
VersionBind = "1.14.1"
110-
VersionDate = "2018-11-19 19:53:56"
111-
version = (VersionBind, VersionFitz, "20181119195356")
109+
VersionBind = "1.14.2"
110+
VersionDate = "2018-11-20 06:27:22"
111+
version = (VersionBind, VersionFitz, "20181120062722")
112112

113113

114114
class Matrix():

fitz/version.i

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%pythoncode %{
22
VersionFitz = "1.14.0"
3-
VersionBind = "1.14.1"
4-
VersionDate = "2018-11-19 19:53:56"
5-
version = (VersionBind, VersionFitz, "20181119195356")
3+
VersionBind = "1.14.2"
4+
VersionDate = "2018-11-20 06:27:22"
5+
version = (VersionBind, VersionFitz, "20181120062722")
66
%}

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
sources=['./fitz/fitz_wrap.c',])
5353

5454
setup(name = 'PyMuPDF',
55-
version = "1.14.1",
55+
version = "1.14.2",
5656
description = 'Python bindings for the PDF rendering library MuPDF',
5757
classifiers = ['Development Status :: 5 - Production/Stable',
5858
'Environment :: Console',

0 commit comments

Comments
 (0)