Skip to content

Commit

Permalink
Release 4.7.0
Browse files Browse the repository at this point in the history
- changed handling of nested fixtures and bug fixes
  • Loading branch information
mrbean-bremen committed Sep 18, 2022
1 parent 596d3fe commit 2aa8cc4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# pyfakefs Release Notes
The released versions correspond to PyPi releases.

## Unreleased
## [Version 4.7.0](https://pypi.python.org/pypi/pyfakefs/4.7.0) (2022-09-18)
Changed handling of nested fixtures and bug fixes.

### Changes
* `fs` fixtures cannot be nested; any nested `fs` fixture (for example
Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ This file provides general usage instructions for pyfakefs. There is more:
* The [Release 3.7 documentation](http://jmcgeheeiv.github.io/pyfakefs/release37)
contains usage documentation for the last version of pyfakefs
supporting Python 2.7
* The [Release 3.3 documentation](http://jmcgeheeiv.github.io/pyfakefs/release33)
contains usage documentation for the last version of pyfakefs
supporting Python 2.6, and for the old-style API (which is still
supported but not documented in the current release)
* The [Release Notes](https://github.com/jmcgeheeiv/pyfakefs/blob/master/CHANGES.md)
show a list of changes in the latest versions

Expand Down
8 changes: 4 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,24 +58,24 @@
project = 'pyfakefs'
copyright = '''2009 Google Inc. All Rights Reserved.
© Copyright 2014 Altera Corporation. All Rights Reserved.
© Copyright 2014-2021 John McGehee'''
© Copyright 2014-2022 John McGehee'''
author = 'John McGehee'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '4.7'
version = '4.7.0'
# The full version, including alpha/beta/rc tags.
release = '4.7.dev0'
release = '4.7.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
language = 'en'

# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
Expand Down
2 changes: 1 addition & 1 deletion pyfakefs/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '4.7.dev0'
__version__ = '4.7.0'
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist=py36,py37,py38,py39,py310,pypy3
envlist=py37,py38,py39,py310,pypy3

[testenv]
deps =
Expand Down

0 comments on commit 2aa8cc4

Please sign in to comment.