Skip to content

Commit 129cff5

Browse files
Release 3.0.1
1 parent 971b566 commit 129cff5

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
CHANGELOG
22
=========
33

4+
3.0.1: 2019-11-28
5+
-----------------
6+
7+
New features:
8+
- Added `new_eventloop_with_inputhook` function.
9+
- Set exception handler from within `Application.run_async`.
10+
- Applied Black code style.
11+
12+
Fixes:
13+
- No longer expect a working event loop in the `History` classes.
14+
(Fix for special situations when a `ThreadedHistory` is created before the
15+
event loop has been set up.)
16+
- Accept an empty prompt continuation.
17+
- A few fixes to the `Buffer` tempfile code.
18+
19+
420
3.0.0: 2019-11-24
521
-----------------
622

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = '3.0.0'
54+
version = '3.0.1'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '3.0.0'
56+
release = '3.0.1'
5757

5858
# The language for content autogenerated by Sphinx. Refer to documentation
5959
# for a list of supported languages.

prompt_toolkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from .shortcuts import PromptSession, print_formatted_text, prompt
1919

2020
# Don't forget to update in `docs/conf.py`!
21-
__version__ = "3.0.0"
21+
__version__ = "3.0.1"
2222

2323
# Version tuple.
2424
VERSION = tuple(__version__.split("."))

0 commit comments

Comments
 (0)