diff --git a/CHANGES.md b/CHANGES.md index 15739ac9..2378ef99 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,7 +1,8 @@ # pyfakefs Release Notes The released versions correspond to PyPI releases. -## Unreleased +## [Version 5.2.3](https://pypi.python.org/pypi/pyfakefs/5.2.3) (2023-07-10) +Adds compatibility with PyPy 3.10 and Python 3.12. ### Fixes * Re-create temp directory if it had been created before on resetting file system diff --git a/docs/conf.py b/docs/conf.py index d6e0d79d..bd0a39f3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = "5.3" +version = "5.2.3" # The full version, including alpha/beta/rc tags. -release = "5.3.dev0" +release = "5.2.3" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyfakefs/_version.py b/pyfakefs/_version.py index bdb37fc3..fd4cdef3 100644 --- a/pyfakefs/_version.py +++ b/pyfakefs/_version.py @@ -1 +1 @@ -__version__ = "5.3.dev0" +__version__ = "5.2.3"