Skip to content

Commit

Permalink
Release 3.5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbean-bremen committed Feb 8, 2019
1 parent 332ff71 commit 1c5b78a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
12 changes: 9 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
# pyfakefs Release Notes
The release versions are PyPi releases.

## Version 3.6 (as yet unreleased)
## [Version 3.5.7](https://pypi.python.org/pypi/pyfakefs/3.5.7)

#### New Features
This is a mostly a bug-fix release.

#### Fixes
* Regression: `pathlib` did not get patched in the presence of `pathlib2`
(see [#467](../../issues/467))

* fixed errors if running the PyCharm debugger under Python 2
(see [#464](../../issues/464))

#### Infrastructure
* do not run real file system tests by default (fixes deployment problem,
see [#465](../../issues/465))
* make tests run if running `python setup.py test` under Python 2

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

Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,17 @@
project = 'pyfakefs'
copyright = '''2009 Google Inc. All Rights Reserved.
© Copyright 2014 Altera Corporation. All Rights Reserved.
© Copyright 2014-2018 John McGehee'''
© Copyright 2014-2019 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 = '3.6'
version = '3.5.7'
# The full version, including alpha/beta/rc tags.
release = '3.6dev'
release = '3.5.7'

# 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 @@ -119,7 +119,7 @@

__pychecker__ = 'no-reimportself'

__version__ = '3.6'
__version__ = '3.5.7'

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

0 comments on commit 1c5b78a

Please sign in to comment.