From d4adcba32a6306064a7b76c486bb75ff443394e2 Mon Sep 17 00:00:00 2001 From: mrbean-bremen Date: Tue, 8 Oct 2024 19:03:42 +0200 Subject: [PATCH] Release 5.7.0 - adds official Python 3.13 support - improves OS emulation behavior --- 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 14ab453b..fee281ec 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.0](https://pypi.python.org/pypi/pyfakefs/5.7.0) (2024-08-10) +Adds official Python 3.13 support, improves OS emulation behavior. ### Changes * officially support Python 3.13 diff --git a/docs/conf.py b/docs/conf.py index 9c13910e..2eb388f8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = "5.7" +version = "5.7.0" # The full version, including alpha/beta/rc tags. -release = "5.7.dev0" +release = "5.7.0" # 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 23cf679b..7f4ce2d4 100644 --- a/pyfakefs/_version.py +++ b/pyfakefs/_version.py @@ -1 +1 @@ -__version__ = "5.7.dev0" +__version__ = "5.7.0"