diff --git a/CHANGES.md b/CHANGES.md index cd5c37c4..c6c8087e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,7 +1,8 @@ # pyfakefs Release Notes The released versions correspond to PyPI releases. -## Unreleased +## [Version 5.3.5](https://pypi.python.org/pypi/pyfakefs/5.3.5) (2024-01-30) +Fixes a regression. ### Fixes * Fixes a regression due to the changed behavior of the dynamic patcher cleanup (see [#939](../../issues/939)). diff --git a/docs/conf.py b/docs/conf.py index 2b8f0d49..401754d4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = "5.4" +version = "5.3.5" # The full version, including alpha/beta/rc tags. -release = "5.4.dev0" +release = "5.3.5" # 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 c1d53f3c..fdf47742 100644 --- a/pyfakefs/_version.py +++ b/pyfakefs/_version.py @@ -1 +1 @@ -__version__ = "5.4.dev0" +__version__ = "5.3.5"