Skip to content

Commit 435bd99

Browse files
Release 3.0.48
1 parent ae1d635 commit 435bd99

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG

+13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
CHANGELOG
22
=========
33

4+
3.0.48: 2024-09-25
5+
------------------
6+
7+
Fixes:
8+
- Typing improvements:
9+
* Add `@overload` to `contrib.regular_languages.compiler.Variables.get`.
10+
* Use `Sequence` instead of `list` for `words` argument in completers.
11+
- Improve `ModalCursorShapeConfig`:
12+
* Display an "underscore" cursor in Vi's "replace single" mode, like
13+
"replace" mode.
14+
* Display an "beam" cursor in Emacs (insert) mode.
15+
16+
417
3.0.47: 2024-06-10
518
------------------
619

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = "3.0.47"
51+
version = "3.0.48"
5252
# The full version, including alpha/beta/rc tags.
53-
release = "3.0.47"
53+
release = "3.0.48"
5454

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

src/prompt_toolkit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
from .shortcuts import PromptSession, print_formatted_text, prompt
2929

3030
# Don't forget to update in `docs/conf.py`!
31-
__version__ = "3.0.47"
31+
__version__ = "3.0.48"
3232

3333
assert pep440.match(__version__)
3434

0 commit comments

Comments
 (0)