Skip to content

Commit e64c740

Browse files
Release 3.0.37
1 parent cf408e5 commit e64c740

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

CHANGELOG

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
11
CHANGELOG
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+
424
3.0.36: 2022-12-06
525
------------------
626

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
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.

src/prompt_toolkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from .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

3232
assert pep440.match(__version__)
3333

0 commit comments

Comments
 (0)