Skip to content

Commit b722bcc

Browse files
committed
Release 5.9.0
- adds support for an API change in latest Python patch releases
1 parent a80d441 commit b722bcc

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGES.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ The released versions correspond to PyPI releases.
1111
* support for patching legacy modules `scandir` and `pathlib2` will be removed
1212
* the default for `FakeFilesystem.shuffle_listdir_results` will change to `True` to reflect
1313
the real filesystem behavior
14+
* remove support for Python versions before 3.10 (if needed, patches may be backported to the 5.x branch)
1415

15-
## Unreleased
16+
## [Version 5.9.0](https://pypi.python.org/pypi/pyfakefs/5.8.0) (2025-06-21)
17+
Adds support for an API change in latest Python patch releases.
1618

1719
### Changes
1820
* the message from an `OSError` raised in the fake filesystem has no longer the postfix

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
# built documents.
6565
#
6666
# The short X.Y version.
67-
version = "5.9"
67+
version = "5.10"
6868
# The full version, including alpha/beta/rc tags.
69-
release = "5.9.dev0"
69+
release = "5.10.dev0"
7070

7171
# The language for content autogenerated by Sphinx. Refer to documentation
7272
# for a list of supported languages.

pyfakefs/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.9.dev0"
1+
__version__ = "5.10.dev0"

0 commit comments

Comments
 (0)