Skip to content

Commit

Permalink
Release v2.2.0 (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Feb 29, 2024
1 parent c9f76e7 commit 858d4ce
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 92 deletions.
13 changes: 13 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ CHANGES

.. towncrier release notes start
2.2.0 (2024-02-29)
==================

- Added typing support.
- Added ``EventSourceResponse.is_connected()`` method.
- Added ``EventSourceResponse.last_event_id()`` method.
- Added support for SSE with HTTP methods other than GET.
- Added support for float ping intervals.
- Fixed (on Python 3.11+) ``EventSourceResponse.wait()`` swallowing user cancellation.
- Fixed ping task not getting cancelled after a send failure.
- Cancelled the ping task when a connection error occurs to help avoid errors.
- Dropped support for Python 3.7 while adding support upto Python 3.12.

2.1.0 (2021-11-13)
==================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/370.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/391.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/421.misc

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/439.doc

This file was deleted.

86 changes: 0 additions & 86 deletions CHANGES/README.rst

This file was deleted.

2 changes: 1 addition & 1 deletion aiohttp_sse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from .helpers import _ContextManager

__version__ = "2.1.0"
__version__ = "2.2.0"
__all__ = ["EventSourceResponse", "sse_response"]


Expand Down

0 comments on commit 858d4ce

Please sign in to comment.