diff --git a/CHANGES.md b/CHANGES.md index 15c49f85..15ccb5b6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -12,7 +12,8 @@ The released versions correspond to PyPI releases. * the default for `FakeFilesystem.shuffle_listdir_results` will change to `True` to reflect the real filesystem behavior -## Unreleased +## [Version 5.7.3](https://pypi.python.org/pypi/pyfakefs/5.7.3) (2024-12-15) +Fixes a regression in version 5.7.3. ### Fixes * fixed a regression in version 5.7.2 that `tempfile` was not patched after pause/resume @@ -22,7 +23,7 @@ The released versions correspond to PyPI releases. ### Infrastructure * run pytest-specific tests for all supported Python versions -* pytest is only supported for versions >= 6.2.5, earlier version do not work +* pytest is only supported for versions >= 6.2.5, earlier version do not work in Python >= 3.10 due to a pytest issue - adapted tests and documentation ## [Version 5.7.2](https://pypi.python.org/pypi/pyfakefs/5.7.2) (2024-12-01) diff --git a/docs/conf.py b/docs/conf.py index 6dcf4af5..afb47c62 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = "5.8" +version = "5.7.3" # The full version, including alpha/beta/rc tags. -release = "5.8.dev0" +release = "5.7.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 498f76d7..90696c22 100644 --- a/pyfakefs/_version.py +++ b/pyfakefs/_version.py @@ -1 +1 @@ -__version__ = "5.8.dev0" +__version__ = "5.7.3"