From e7c8ede3b572f2521779ae8205eaec2be4cee5cd Mon Sep 17 00:00:00 2001 From: mrbean-bremen Date: Wed, 15 Nov 2023 19:50:59 +0100 Subject: [PATCH] Release 5.3.1 - mostly a bugfix release --- CHANGES.md | 9 ++++++--- docs/conf.py | 4 ++-- pyfakefs/_version.py | 2 +- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 979d8c8c..e6b28059 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,7 +1,12 @@ # pyfakefs Release Notes The released versions correspond to PyPI releases. -## Unreleased +## [Version 5.3.1](https://pypi.python.org/pypi/pyfakefs/5.3.0) (2023-11-15) +Mostly a bugfix release. + +### Changes +* changed behavior of `add_real_directory` to be able to map a real directory + to an existing directory in the fake filesystem (see #901) ### Fixes * fixes the problem that filesystem patching was still active in the pytest @@ -14,8 +19,6 @@ Adds official support for Python 3.12. ### Changes * add official support for Python 3.12 -* changed behavior of `add_real_directory` to be able to map a real directory - to an existing directory in the fake filesystem (see #901) ### Fixes * removed a leftover debug print statement (see [#869](../../issues/869)) diff --git a/docs/conf.py b/docs/conf.py index 2b8f0d49..c895277d 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.1" # The full version, including alpha/beta/rc tags. -release = "5.4.dev0" +release = "5.3.1" # 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..0419a93d 100644 --- a/pyfakefs/_version.py +++ b/pyfakefs/_version.py @@ -1 +1 @@ -__version__ = "5.4.dev0" +__version__ = "5.3.1"