Skip to content

Commit

Permalink
Release 5.5.0
Browse files Browse the repository at this point in the history
- deprecates the usage of the pathlib2 and scandir packages
  • Loading branch information
mrbean-bremen committed May 12, 2024
1 parent 68ed3b9 commit 353ad03
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ The released versions correspond to PyPI releases.
* remove support for patching legacy modules `scandir` and `pathlib2`
* remove support for Python 3.7

## Unreleased
## [Version 5.5.0](https://pypi.python.org/pypi/pyfakefs/5.5.0) (2024-05-12)
Deprecates the usage of `pathlib2` and `scandir`.

### Changes
* The usage of the `pathlib2` and `scandir` modules in pyfakefs is now deprecated.
Expand All @@ -16,6 +17,7 @@ The released versions correspond to PyPI releases.
and/or faked filesystem customization (see [#1006](../../issues/1006)).

### Fixes
* fixed handling of Windows `pathlib` paths under POSIX and vice verse (see [#1006](../../issues/1006))
* correctly use real open calls in pathlib for skipped modules (see [#1012](../../issues/1012))

## [Version 5.4.1](https://pypi.python.org/pypi/pyfakefs/5.4.0) (2024-04-11)
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@
# built documents.
#
# The short X.Y version.
version = "5.5"
version = "5.5.0"
# The full version, including alpha/beta/rc tags.
release = "5.5.dev0"
release = "5.5.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pyfakefs/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.5.dev0"
__version__ = "5.5.0"

0 comments on commit 353ad03

Please sign in to comment.