From 1aa7ea53a0d70e4b6d76cf5d9ddc2ea855020ec0 Mon Sep 17 00:00:00 2001 From: Sylvain MARIE Date: Fri, 7 Jan 2022 15:31:03 +0100 Subject: [PATCH] 1.13.1 changelog --- docs/changelog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/changelog.md b/docs/changelog.md index fbe47de..4793f34 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,9 @@ # Changelog +### 1.13.1 - Fixed regression with generators in python 3.5 + + - Fixed an issue where using `partial` on a generator function in python 3.5 was raising a `SyntaxError`. Fixed [#79](https://github.com/smarie/python-makefun/issues/79) + ### 1.13.0 - Support for async generator functions - async generator functions are now supported (See [PEP525](https://www.python.org/dev/peps/pep-0525/)). Fixed [#77](https://github.com/smarie/python-makefun/issues/77). [PR#78](https://github.com/smarie/python-makefun/pull/78) by [broglep-work](https://github.com/broglep-work).