From 682a75fad80622253619a798408661c61b30d3eb Mon Sep 17 00:00:00 2001 From: mrbean-bremen Date: Sun, 13 Oct 2024 09:44:03 +0200 Subject: [PATCH] Release 5.7.1 - fixes a regression that broke patching fcntl --- CHANGES.md | 3 ++- docs/conf.py | 4 ++-- pyfakefs/_version.py | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) 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"