Skip to content

Commit d365f15

Browse files
committed
Release 4.0.0
- using semantic versioning, so not version 4.0...
1 parent 3ca0767 commit d365f15

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

CHANGES.md

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

4-
## Version 4.0 (as yet unreleased)
4+
## [Version 4.0.0](https://pypi.python.org/pypi/pyfakefs/4.0.0)
55

6-
_Note:_ pyfakefs 4.0 is planned for release at the beginning of 2020. As
7-
pyfakefs 4.0 is a major release, we are giving you advance notice of
8-
the proposed changes so you can be ready.
9-
10-
* pyfakefs 4.0 drops support for Python 2.7. If you still need
11-
Python 2.7, you can continue to use pyfakefs 3.7.
6+
* pyfakefs 4.0.0 drops support for Python 2.7. If you still need
7+
Python 2.7, you can continue to use pyfakefs 3.7.x.
128

139
#### Changes
1410
* Removed Python 2.7 and 3.4 support (see [#492](../../issues/492))

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ This file provides general usage instructions for pyfakefs. There is more:
1818
released on PyPi
1919
* The [Development documentation](http://jmcgeheeiv.github.io/pyfakefs/master)
2020
contains the same documentation for the current master branch
21+
* The [Release 3.7 documentation](http://jmcgeheeiv.github.io/pyfakefs/release37)
22+
contains usage documentation for the last version of pyfakefs
23+
supporting Python 2.7
2124
* The [Release 3.3 documentation](http://jmcgeheeiv.github.io/pyfakefs/release33)
2225
contains usage documentation for the last version of pyfakefs
2326
supporting Python 2.6, and for the old-style API (which is still

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@
6666
# built documents.
6767
#
6868
# The short X.Y version.
69-
version = '4.0'
69+
version = '4.0.0'
7070
# The full version, including alpha/beta/rc tags.
71-
release = '4.0dev'
71+
release = '4.0.0'
7272

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

pyfakefs/fake_filesystem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116

117117
__pychecker__ = 'no-reimportself'
118118

119-
__version__ = '4.0'
119+
__version__ = '4.0.0'
120120

121121
PERM_READ = 0o400 # Read permission bit.
122122
PERM_WRITE = 0o200 # Write permission bit.

0 commit comments

Comments
 (0)