File tree Expand file tree Collapse file tree 3 files changed +23
-3
lines changed
Expand file tree Collapse file tree 3 files changed +23
-3
lines changed Original file line number Diff line number Diff line change 11CHANGELOG
22=========
33
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+
4243.0.36: 2022-12-06
525------------------
626
Original file line number Diff line number Diff line change 5050# built documents.
5151#
5252# The short X.Y version.
53- version = "3.0.36 "
53+ version = "3.0.37 "
5454# The full version, including alpha/beta/rc tags.
55- release = "3.0.36 "
55+ release = "3.0.37 "
5656
5757# The language for content autogenerated by Sphinx. Refer to documentation
5858# for a list of supported languages.
Original file line number Diff line number Diff line change 2727from .shortcuts import PromptSession , print_formatted_text , prompt
2828
2929# Don't forget to update in `docs/conf.py`!
30- __version__ = "3.0.36 "
30+ __version__ = "3.0.37 "
3131
3232assert pep440 .match (__version__ )
3333
You can’t perform that action at this time.
0 commit comments