Skip to content

Commit

Permalink
Patch release 4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbean-bremen committed Mar 3, 2020
1 parent cd55b76 commit 366584a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ The released versions correspond to PyPi releases.

## Version 4.1.0 (as yet unreleased)

## [Version 4.0.1](https://pypi.python.org/pypi/pyfakefs/4.0.1)

This as a bug fix release for a regression bug.

#### Fixes
* Avoid exception if using `flask-restx` (see [#523](../../issues/523))

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@
# built documents.
#
# The short X.Y version.
version = '4.1'
version = '4.0.1'
# The full version, including alpha/beta/rc tags.
release = '4.1dev'
release = '4.0.1'

# 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/fake_filesystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@

__pychecker__ = 'no-reimportself'

__version__ = '4.1dev'
__version__ = '4.0.1'

PERM_READ = 0o400 # Read permission bit.
PERM_WRITE = 0o200 # Write permission bit.
Expand Down

0 comments on commit 366584a

Please sign in to comment.