Skip to content

Commit

Permalink
Release 5.2.0
Browse files Browse the repository at this point in the history
- supports current Python 3.12 version (alpha 6)
  • Loading branch information
mrbean-bremen committed Mar 31, 2023
1 parent 199561f commit 39e75ed
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# pyfakefs Release Notes
The released versions correspond to PyPI releases.

## Unreleased
## [Version 5.2.0](https://pypi.python.org/pypi/pyfakefs/5.2.0) (2023-03-31)
Supports current Python 3.12 version (alpha 6). We plan to make patch releases in
case of breaking changes in alpha or beta versions.

### Changes
* Fake module classes previously defined in `fake_filesystem` have now moved to
Expand All @@ -17,7 +19,7 @@ The released versions correspond to PyPI releases.
### Features
* added possibility to set a path inaccessible under Windows by using `chown()` with
the `force_unix_mode` flag (see [#720](../../issues/720))
* added support for changes in Python 3.12 (currently in last beta version)
* added support for current Python 3.12 version (alpha 6)
* added support for `os.path.splitroot` (new in Python 3.12)

## [Version 5.1.0](https://pypi.python.org/pypi/pyfakefs/5.1.0) (2023-01-12)
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
# The short X.Y version.
version = "5.2"
# The full version, including alpha/beta/rc tags.
release = "5.2.dev0"
release = "5.2.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.2.dev0"
__version__ = "5.2.0"

0 comments on commit 39e75ed

Please sign in to comment.