@@ -5,16 +5,37 @@ Release history
5
5
6
6
.. towncrier release notes start
7
7
8
+ Async_Generator 1.10 (2018-07-31)
9
+ ---------------------------------
10
+
11
+ Features
12
+ ~~~~~~~~
13
+
14
+ - Add support for PEP 525-style finalization hooks via
15
+ ``set_asyncgen_hooks() `` and ``get_asyncgen_hooks() `` functions. On
16
+ Python 3.6+, these are aliases for the versions in ``sys ``; on
17
+ Python 3.5, they're work-alike implementations. And,
18
+ ``@async_generator `` generators now call these hooks at the
19
+ appropriate times. (`#15
20
+ <https://github.com/python-trio/trio/issues/15> `__)
21
+
22
+ Fixes
23
+ ~~~~~
24
+
25
+ - Package now properly includes license files. (`#11
26
+ <https://github.com/python-trio/async_generator/pull/11> `__)
27
+
28
+
8
29
1.9 (2018-01-19)
9
30
----------------
10
31
11
32
* Add :func: `asynccontextmanager `
12
33
* When a partially-exhausted ``async_generator `` is garbage collected,
13
34
the warning printed now includes the generator's name to help you
14
35
track it down.
15
- * Move under the auspices of the Trio project
16
- * This includes a license change from MIT → dual MIT+Apache2
17
- * Various changes to project organization to match Trio project standard
36
+ * Move under the auspices of the Trio project. This includes a license
37
+ change from MIT → dual MIT+Apache2, and various changes to internal
38
+ organization to match Trio project standard.
18
39
19
40
1.8 (2017-06-17)
20
41
----------------
0 commit comments