File tree 3 files changed +23
-3
lines changed 3 files changed +23
-3
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
4
+ 3.0.37: 2023-02-21
5
+ ------------------
6
+
7
+ Bug fixes:
8
+ - Fix `currentThread()` deprecation warning.
9
+ - Fix memory leak in filters.
10
+ - Make VERSION tuple numeric.
11
+
12
+ New features:
13
+ - Add `.run()` method in `TelnetServer`. (To be used instead of
14
+ `.start()/.stop()`.
15
+
16
+ Breaking changes:
17
+ - Subclasses of `Filter` have to call `super()` in their `__init__`.
18
+ - Drop support for Python 3.6:
19
+ * This includes code cleanup for Python 3.6 compatibility.
20
+ * Use `get_running_loop()` instead of `get_event_loop()`.
21
+ * Use `asyncio.run()` instead of `asyncio.run_until_complete()`.
22
+
23
+
4
24
3.0.36: 2022-12-06
5
25
------------------
6
26
Original file line number Diff line number Diff line change 50
50
# built documents.
51
51
#
52
52
# The short X.Y version.
53
- version = "3.0.36 "
53
+ version = "3.0.37 "
54
54
# The full version, including alpha/beta/rc tags.
55
- release = "3.0.36 "
55
+ release = "3.0.37 "
56
56
57
57
# The language for content autogenerated by Sphinx. Refer to documentation
58
58
# for a list of supported languages.
Original file line number Diff line number Diff line change 27
27
from .shortcuts import PromptSession , print_formatted_text , prompt
28
28
29
29
# Don't forget to update in `docs/conf.py`!
30
- __version__ = "3.0.36 "
30
+ __version__ = "3.0.37 "
31
31
32
32
assert pep440 .match (__version__ )
33
33
You can’t perform that action at this time.
0 commit comments