Skip to content

Commit bc531c5

Browse files
Updated version number and dates for 1.21.0rc1.
1 parent 3008826 commit bc531c5

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# PyMuPDF 1.21.0
1+
# PyMuPDF 1.21.0rc1
22

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Change Log
22
==========
33

44

5-
**Changes in Version 1.21.0**
5+
**Changes in Version 1.21.0rc1**
66

77
* This release uses ``MuPDF-1.21.0``.
88

docs/changes.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Change Log
22
==========
33

44

5-
**Changes in Version 1.21.0**
5+
**Changes in Version 1.21.0rc1**
66

77
* This release uses ``MuPDF-1.21.0``.
88

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.21.0"
46+
release = "1.21.0rc1"
4747

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

docs/document-writer-class.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ DocumentWriter
88

99
This class represents a utility which can output various document types supported by MuPDF.
1010

11-
In PyMuPDF it is currently (v1.21.0) only used for outputting PDF documents whose pages are populated by :ref:`Story` DOMs.
11+
In PyMuPDF only used for outputting PDF documents whose pages are populated by :ref:`Story` DOMs.
1212

1313
Using DocumentWriter_ also for other document types might happen in the future.
1414

@@ -48,4 +48,4 @@ Using DocumentWriter_ also for other document types might happen in the future.
4848

4949
Close the output file. This method is required for writing any pending data.
5050

51-
For usage examples consult the section of :ref:`Story`.
51+
For usage examples consult the section of :ref:`Story`.

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.21.0 features as of **2022-08-13 00:00:01**.
4+
This documentation covers PyMuPDF v1.21.0rc1 features as of **2022-10-31 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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%pythoncode %{
22
VersionFitz = "1.21.0" # MuPDF version.
3-
VersionBind = "1.21.0" # PyMuPDF version.
4-
VersionDate = "2022-08-13 00:00:01"
5-
version = (VersionBind, VersionFitz, "20220813000001")
3+
VersionBind = "1.21.0rc1" # PyMuPDF version.
4+
VersionDate = "2022-10-31 00:00:01"
5+
version = (VersionBind, VersionFitz, "20221031000001")
66
%}

setup.py

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

749749
setup(
750750
name="PyMuPDF",
751-
version="1.21.0",
751+
version="1.21.0rc1",
752752
description="Python bindings for the PDF toolkit and renderer MuPDF",
753753
long_description=readme,
754754
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)