Skip to content

Commit dc6517f

Browse files
committed
Release 5.3.2
- bugfix release
1 parent cd3dc82 commit dc6517f

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

CHANGES.md

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

4-
## Unreleased
4+
## [Version 5.3.2](https://pypi.python.org/pypi/pyfakefs/5.3.2) (2023-11-30)
5+
Bugfix release.
56

67
### Fixes
78
* fixed a problem with patching `_io` under Python 3.12 (see [#910](../../issues/910))
@@ -12,7 +13,7 @@ The released versions correspond to PyPI releases.
1213
* properly fixed the problem that filesystem patching was still active in the pytest
1314
logreport phase (see [#904](../../issues/904)), the previous fix was incomplete
1415

15-
## [Version 5.3.1](https://pypi.python.org/pypi/pyfakefs/5.3.0) (2023-11-15)
16+
## [Version 5.3.1](https://pypi.python.org/pypi/pyfakefs/5.3.1) (2023-11-15)
1617
Mostly a bugfix release.
1718

1819
### Changes
@@ -39,7 +40,7 @@ Adds official support for Python 3.12.
3940
* adapt patching `io.open` and `io.open_code` to work with Python 3.12
4041
(see [#836](../../issues/836) and [#892](../../issues/892))
4142

42-
## [Version 5.2.3](https://pypi.python.org/pypi/pyfakefs/5.2.3) (2023-08-18)
43+
## [Version 5.2.4](https://pypi.python.org/pypi/pyfakefs/5.2.4) (2023-08-18)
4344
Fixes a rare problem on pytest shutdown.
4445

4546
### Fixes
@@ -329,7 +330,7 @@ This is a bugfix release.
329330
* skip tests failing with ASCII locale
330331
(see [#623](../../issues/623))
331332

332-
## [Version 4.5.0](https://pypi.python.org/pypi/pyfakefs/4.5.0) (2021-06-04)
333+
## Version 4.5.0 (2021-06-04)
333334
Adds some support for Python 3.10 and basic type checking.
334335

335336
_Note_: This version has been yanked from PyPI as it erroneously allowed
@@ -436,7 +437,7 @@ release.
436437
`patch_default_args` has been added that switches this behavior on
437438
(see [#567](../../issues/567)).
438439
* Added performance improvements in the test setup, including caching the
439-
the unpatched modules
440+
unpatched modules
440441

441442
## [Version 4.2.1](https://pypi.python.org/pypi/pyfakefs/4.2.1) (2020-11-02)
442443

@@ -507,7 +508,7 @@ installing them under Python 2.
507508
#### Fixes
508509
* Do not build for Python 2 (see [#524](../../issues/524))
509510

510-
## [Version 4.0.1](https://pypi.python.org/pypi/pyfakefs/4.0.1) (2020-03-03)
511+
## Version 4.0.1 (2020-03-03)
511512

512513
This as a bug fix release for a regression bug.
513514

@@ -517,7 +518,7 @@ installation under Python 2. This has been fixed in version 4.0.2.
517518
#### Fixes
518519
* Avoid exception if using `flask-restx` (see [#523](../../issues/523))
519520

520-
## [Version 4.0.0](https://pypi.python.org/pypi/pyfakefs/4.0.0) (2020-03-03)
521+
## Version 4.0.0 (2020-03-03)
521522
pyfakefs 4.0.0 drops support for Python 2.7. If you still need
522523
Python 2.7, you can continue to use pyfakefs 3.7.x.
523524

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
# built documents.
6565
#
6666
# The short X.Y version.
67-
version = "5.4"
67+
version = "5.3.2"
6868
# The full version, including alpha/beta/rc tags.
69-
release = "5.4.dev0"
69+
release = "5.3.2"
7070

7171
# The language for content autogenerated by Sphinx. Refer to documentation
7272
# 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__ = "5.4.dev0"
1+
__version__ = "5.3.2"

0 commit comments

Comments
 (0)