Skip to content

Commit 0a2c3aa

Browse files
committed
Prepare for 0.8 release
1 parent 1615817 commit 0a2c3aa

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,12 @@ Calling functions that are not supported will generally raise
187187

188188
## Changelog
189189

190+
### 0.8
191+
192+
- Support `socket.sendmsg`.
193+
- Support `socket.getpeername` for listening sockets (raises OSError).
194+
- Make `EventLoop.time` work even after the event loop is closed.
195+
190196
### 0.7
191197

192198
- Add a replacement function for `aiohappyeyeballs.start_connection`.

src/async_solipsism/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2020-2022, 2024 Bruce Merry
1+
# Copyright 2020-2022, 2024-2025 Bruce Merry
22
#
33
# This file is part of async-solipsism.
44
#
@@ -19,4 +19,4 @@
1919
from .socket import * # noqa
2020
from .loop import * # noqa
2121

22-
__version__ = '0.7'
22+
__version__ = '0.8'

src/async_solipsism/loop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2020, 2022, 2024 Bruce Merry
1+
# Copyright 2020, 2022, 2024-2025 Bruce Merry
22
#
33
# This file is part of async-solipsism.
44
#

0 commit comments

Comments
 (0)