We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c60274 commit 5767ec3Copy full SHA for 5767ec3
CHANGELOG.md
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
4
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
7
+# v3.0.1
8
+
9
+### Fixed
10
11
+- A lot of bugs with `thread_auto_close` 😅
12
13
14
# v3.0.0
15
16
### Added
core/thread.py
@@ -230,7 +230,7 @@ async def _close(
230
):
231
del self.manager.cache[self.id]
232
233
- await self.cancel_closure()
+ await self.cancel_closure(all=True)
234
235
# Cancel auto closing the thread if closed by any means.
236
0 commit comments