Skip to content

Commit

Permalink
Updated vesion and dates for 1.23.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-smith-artifex-com committed Aug 28, 2023
1 parent 12e9435 commit f7ca6e7
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion READMErb.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# PyMuPDF 1.23.2rc1
# PyMuPDF 1.23.2

This wheel contains MuPDF shared libraries for use by PyMuPDF.

Expand Down
2 changes: 1 addition & 1 deletion changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Change Log
==========


**Changes in version 1.23.2rc1 (2023-08-27)**
**Changes in version 1.23.2 (2023-08-28)**

* **Fixed** `#2613 https://github.com/pymupdf/PyMuPDF/issues/2613`_: release 1.23.0 not MacOS-arm64 compatible

Expand Down
2 changes: 1 addition & 1 deletion docs/version.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
----

This documentation covers **PyMuPDF v1.23.2rc1** features as of **2023-08-27 00:00:01**.
This documentation covers **PyMuPDF v1.23.2** features as of **2023-08-28 00:00:01**.

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

6 changes: 3 additions & 3 deletions fitz/version.i
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
%pythoncode %{
VersionFitz = "1.23.0" # MuPDF version.
VersionBind = "1.23.2rc1" # PyMuPDF version.
VersionDate = "2023-08-27 00:00:01"
version = (VersionBind, VersionFitz, "20230827000001")
VersionBind = "1.23.2" # PyMuPDF version.
VersionDate = "2023-08-28 00:00:01"
version = (VersionBind, VersionFitz, "20230828000001")
%}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1151,7 +1151,7 @@ def sdist():
# We generate different wheels depending on g_flavour.
#

version = '1.23.2rc1'
version = '1.23.2'
version_b = '1.23.0' # Use older PyMuPDFb wheels.

tag_python = None
Expand Down
4 changes: 2 additions & 2 deletions src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21234,8 +21234,8 @@ class FitzDeprecation(DeprecationWarning):


VersionFitz = "1.23.0" # MuPDF version.
VersionBind = "1.23.2rc1" # PyMuPDF version.
VersionDate = "2023-08-27 00:00:01"
VersionBind = "1.23.2" # PyMuPDF version.
VersionDate = "2023-08-28 00:00:01"
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
version = (VersionBind, VersionFitz, VersionDate2)

Expand Down

0 comments on commit f7ca6e7

Please sign in to comment.