diff --git a/CHANGES.md b/CHANGES.md index 2a940274..f504761b 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.1](https://pypi.python.org/pypi/pyfakefs/5.7.1) (2024-08-13) +Fixes a regression in version 5.7.0 that broke patching fcntl. ### Fixes * fixes a regression that caused unfaked `fcntl` calls to fail (see [#1074](../../issues/1074)) diff --git a/docs/conf.py b/docs/conf.py index 6dcf4af5..29ce3bdb 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.1" # The full version, including alpha/beta/rc tags. -release = "5.8.dev0" +release = "5.7.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 498f76d7..28a77fe0 100644 --- a/pyfakefs/_version.py +++ b/pyfakefs/_version.py @@ -1 +1 @@ -__version__ = "5.8.dev0" +__version__ = "5.7.1"