From 0f01aafb9514be278b301c0f1b00d88209b01ac6 Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Tue, 13 Dec 2022 11:21:36 +0000 Subject: [PATCH] Updated version numbers and dates for 1.21.1 release. --- README.md | 4 ++-- changes.txt | 2 +- docs/changes.rst | 2 +- docs/conf.py | 2 +- docs/version.rst | 2 +- fitz/version.i | 6 +++--- setup.py | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d92e3b1c5..57ecb7912 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -# PyMuPDF 1.21.1rc1 +# PyMuPDF 1.21.1 ![logo](https://artifex.com/images/logos/py-mupdf-github-icon.png) -Release date: December 12, 2022 +Release date: December 13, 2022 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) diff --git a/changes.txt b/changes.txt index 61bcd0f50..83de5000e 100644 --- a/changes.txt +++ b/changes.txt @@ -3,7 +3,7 @@ Change Log ========== -**Changes in Version 1.21.1rc1 (2022-12-12)** +**Changes in Version 1.21.1 (2022-12-13)** * This release uses ``MuPDF-1.21.1``. diff --git a/docs/changes.rst b/docs/changes.rst index 61bcd0f50..83de5000e 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -3,7 +3,7 @@ Change Log ========== -**Changes in Version 1.21.1rc1 (2022-12-12)** +**Changes in Version 1.21.1 (2022-12-13)** * This release uses ``MuPDF-1.21.1``. diff --git a/docs/conf.py b/docs/conf.py index 001c011c3..97e96bb27 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -43,7 +43,7 @@ # built documents. # # The full version, including alpha/beta/rc tags. -release = "1.21.1rc1" +release = "1.21.1" # The short X.Y version version = release diff --git a/docs/version.rst b/docs/version.rst index c1c0c5d2f..99cf2de07 100644 --- a/docs/version.rst +++ b/docs/version.rst @@ -1,6 +1,6 @@ Covered Version -------------------- -This documentation covers PyMuPDF v1.21.1rc1 features as of **2022-12-12 00:00:01**. +This documentation covers PyMuPDF v1.21.1 features as of **2022-12-13 00:00:01**. .. 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. diff --git a/fitz/version.i b/fitz/version.i index 7bbbd4312..58431021d 100644 --- a/fitz/version.i +++ b/fitz/version.i @@ -1,6 +1,6 @@ %pythoncode %{ VersionFitz = "1.21.1" # MuPDF version. -VersionBind = "1.21.1rc1" # PyMuPDF version. -VersionDate = "2022-12-12 00:00:01" -version = (VersionBind, VersionFitz, "20221212000001") +VersionBind = "1.21.1" # PyMuPDF version. +VersionDate = "2022-12-13 00:00:01" +version = (VersionBind, VersionFitz, "20221213000001") %} diff --git a/setup.py b/setup.py index 82ce07855..654aad007 100644 --- a/setup.py +++ b/setup.py @@ -788,7 +788,7 @@ def get_mupdf(): setup( name="PyMuPDF", - version="1.21.1rc1", + version="1.21.1", description="Python bindings for the PDF toolkit and renderer MuPDF", long_description=readme, long_description_content_type="text/markdown",