Skip to content

Commit bec380f

Browse files
committed
Release 4.3.2
1 parent 436384e commit bec380f

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Python package
1+
name: Testsuite
22

33
on: [push]
44

CHANGES.md

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

4-
## Version 4.4.0 (as yet unreleased)
4+
## [Version 4.3.2](https://pypi.python.org/pypi/pyfakefs/4.3.2) (2020-11-26)
5+
6+
This is a bugfix release that fixes a regression introduced in version 4.2.0.
57

68
### Fixes
79
* `open` calls had not been patched for modules with a name ending with "io"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 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)
1+
# 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)
22

33
pyfakefs implements a fake file system that mocks the Python file system modules.
44
Using pyfakefs, your tests operate on a fake file system in memory without
@@ -14,7 +14,7 @@ This file provides general usage instructions for pyfakefs. There is more:
1414
* The documentation at [GitHub Pages:](http://jmcgeheeiv.github.io/pyfakefs)
1515
* The [Release documentation](http://jmcgeheeiv.github.io/pyfakefs/release)
1616
contains usage documentation for pyfakefs and a description of the
17-
most relevent classes, methods and functions for the last version
17+
most relevant classes, methods and functions for the last version
1818
released on PyPi
1919
* The [Development documentation](http://jmcgeheeiv.github.io/pyfakefs/master)
2020
contains the same documentation for the current master branch

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.4'
69+
version = '4.3.2'
7070
# The full version, including alpha/beta/rc tags.
71-
release = '4.4dev'
71+
release = '4.3.2'
7272

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

pyfakefs/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '4.4dev'
1+
__version__ = '4.3.2'

0 commit comments

Comments
 (0)