Skip to content

Commit 2aa8cc4

Browse files
committed
Release 4.7.0
- changed handling of nested fixtures and bug fixes
1 parent 596d3fe commit 2aa8cc4

File tree

5 files changed

+8
-11
lines changed

5 files changed

+8
-11
lines changed

CHANGES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# pyfakefs Release Notes
22
The released versions correspond to PyPi releases.
33

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

67
### Changes
78
* `fs` fixtures cannot be nested; any nested `fs` fixture (for example

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ This file provides general usage instructions for pyfakefs. There is more:
2121
* The [Release 3.7 documentation](http://jmcgeheeiv.github.io/pyfakefs/release37)
2222
contains usage documentation for the last version of pyfakefs
2323
supporting Python 2.7
24-
* The [Release 3.3 documentation](http://jmcgeheeiv.github.io/pyfakefs/release33)
25-
contains usage documentation for the last version of pyfakefs
26-
supporting Python 2.6, and for the old-style API (which is still
27-
supported but not documented in the current release)
2824
* The [Release Notes](https://github.com/jmcgeheeiv/pyfakefs/blob/master/CHANGES.md)
2925
show a list of changes in the latest versions
3026

docs/conf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,24 +58,24 @@
5858
project = 'pyfakefs'
5959
copyright = '''2009 Google Inc. All Rights Reserved.
6060
© Copyright 2014 Altera Corporation. All Rights Reserved.
61-
© Copyright 2014-2021 John McGehee'''
61+
© Copyright 2014-2022 John McGehee'''
6262
author = 'John McGehee'
6363

6464
# The version info for the project you're documenting, acts as replacement for
6565
# |version| and |release|, also used in various other places throughout the
6666
# built documents.
6767
#
6868
# The short X.Y version.
69-
version = '4.7'
69+
version = '4.7.0'
7070
# The full version, including alpha/beta/rc tags.
71-
release = '4.7.dev0'
71+
release = '4.7.0'
7272

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

8080
# There are two options for replacing |today|: either, you set today to some
8181
# non-false value, then it is used:

pyfakefs/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '4.7.dev0'
1+
__version__ = '4.7.0'

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=py36,py37,py38,py39,py310,pypy3
2+
envlist=py37,py38,py39,py310,pypy3
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)