Skip to content

Commit

Permalink
Release 4.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbean-bremen committed Nov 26, 2020
1 parent 436384e commit bec380f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Python package
name: Testsuite

on: [push]

Expand Down
4 changes: 3 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# pyfakefs Release Notes
The released versions correspond to PyPi releases.

## Version 4.4.0 (as yet unreleased)
## [Version 4.3.2](https://pypi.python.org/pypi/pyfakefs/4.3.2) (2020-11-26)

This is a bugfix release that fixes a regression introduced in version 4.2.0.

### Fixes
* `open` calls had not been patched for modules with a name ending with "io"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pyfakefs [![PyPI version](https://badge.fury.io/py/pyfakefs.svg)](https://badge.fury.io/py/pyfakefs) [![Python version](https://img.shields.io/pypi/pyversions/pyfakefs.svg)](https://img.shields.io/pypi/pyversions/pyfakefs.svg)
# pyfakefs [![PyPI version](https://badge.fury.io/py/pyfakefs.svg)](https://badge.fury.io/py/pyfakefs) [![Python version](https://img.shields.io/pypi/pyversions/pyfakefs.svg)](https://img.shields.io/pypi/pyversions/pyfakefs.svg) ![Testsuite](https://github.com/jmcgeheeiv/pyfakefs/workflows/Testsuite/badge.svg)

pyfakefs implements a fake file system that mocks the Python file system modules.
Using pyfakefs, your tests operate on a fake file system in memory without
Expand All @@ -14,7 +14,7 @@ This file provides general usage instructions for pyfakefs. There is more:
* The documentation at [GitHub Pages:](http://jmcgeheeiv.github.io/pyfakefs)
* The [Release documentation](http://jmcgeheeiv.github.io/pyfakefs/release)
contains usage documentation for pyfakefs and a description of the
most relevent classes, methods and functions for the last version
most relevant classes, methods and functions for the last version
released on PyPi
* The [Development documentation](http://jmcgeheeiv.github.io/pyfakefs/master)
contains the same documentation for the current master branch
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.4'
version = '4.3.2'
# The full version, including alpha/beta/rc tags.
release = '4.4dev'
release = '4.3.2'

# 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/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '4.4dev'
__version__ = '4.3.2'

0 comments on commit bec380f

Please sign in to comment.