Skip to content

Commit

Permalink
Bump to 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Sep 9, 2017
1 parent 31dd718 commit a79a08a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
CHANGES
=======

1.4.0 (2017-09-09)
------------------

* Implement `remaining` property (#20)

* If timeout is not started yet or started unconstrained:
`remaining` is `None`
* If timeout is expired: `remaining` is `0.0`
* All others: roughly amount of time before `TimeoutError` is triggered

1.3.0 (2017-08-23)
------------------

Expand Down
2 changes: 1 addition & 1 deletion async_timeout/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import asyncio


__version__ = '1.3.0'
__version__ = '1.4.0'


class timeout:
Expand Down

0 comments on commit a79a08a

Please sign in to comment.