File tree Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
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
+
4
20
3.0.0: 2019-11-24
5
21
-----------------
6
22
Original file line number Diff line number Diff line change 51
51
# built documents.
52
52
#
53
53
# The short X.Y version.
54
- version = '3.0.0 '
54
+ version = '3.0.1 '
55
55
# The full version, including alpha/beta/rc tags.
56
- release = '3.0.0 '
56
+ release = '3.0.1 '
57
57
58
58
# The language for content autogenerated by Sphinx. Refer to documentation
59
59
# for a list of supported languages.
Original file line number Diff line number Diff line change 18
18
from .shortcuts import PromptSession , print_formatted_text , prompt
19
19
20
20
# Don't forget to update in `docs/conf.py`!
21
- __version__ = "3.0.0 "
21
+ __version__ = "3.0.1 "
22
22
23
23
# Version tuple.
24
24
VERSION = tuple (__version__ .split ("." ))
You can’t perform that action at this time.
0 commit comments