diff --git a/CHANGES.md b/CHANGES.md index ac90166d..a08145ac 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.3](https://pypi.python.org/pypi/pyfakefs/5.3.3) (2024-01-19) +Bugfix release. ### Fixes * fixes handling of unhashable modules which cannot be cached (see [#923](../../issues/923)) diff --git a/docs/conf.py b/docs/conf.py index 2b8f0d49..e5bbaaab 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.3" # The full version, including alpha/beta/rc tags. -release = "5.4.dev0" +release = "5.3.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 c1d53f3c..d2f4a6f4 100644 --- a/pyfakefs/_version.py +++ b/pyfakefs/_version.py @@ -1 +1 @@ -__version__ = "5.4.dev0" +__version__ = "5.3.3"