Skip to content

Commit a52b032

Browse files
committed
Bump version to 1.1
1 parent 849884c commit a52b032

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ details.
106106
Changes
107107
=======
108108

109-
1.1 (????-??-??)
109+
1.1 (2016-11-06)
110110
----------------
111111

112112
* Support for ``asend``\/``athrow``\/``aclose``
@@ -117,6 +117,9 @@ Changes
117117
<https://www.python.org/dev/peps/pep-0492/#api-design-and-implementation-revisions>`_
118118
where ``__aiter__`` should now be a regular method instead of an
119119
async method.
120+
* Adapt to Python 3.5.2's pickiness about iterating over
121+
already-exhausted coroutines.
122+
* 100% test coverage.
120123

121124

122125
1.0 (2016-07-03)

async_generator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from .impl import async_generator, yield_, yield_from_
22

3-
__version__ = "1.0+dev"
3+
__version__ = "1.1"
44

55
__all__ = ["async_generator", "yield_", "yield_from_"]

0 commit comments

Comments
 (0)