diff --git a/CHANGELOG b/CHANGELOG index 272823232..b58229c3d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,19 @@ CHANGELOG ========= +3.0.48: 2024-09-25 +------------------ + +Fixes: +- Typing improvements: + * Add `@overload` to `contrib.regular_languages.compiler.Variables.get`. + * Use `Sequence` instead of `list` for `words` argument in completers. +- Improve `ModalCursorShapeConfig`: + * Display an "underscore" cursor in Vi's "replace single" mode, like + "replace" mode. + * Display an "beam" cursor in Emacs (insert) mode. + + 3.0.47: 2024-06-10 ------------------ diff --git a/docs/conf.py b/docs/conf.py index 1c6bb576d..a5d1f1608 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = "3.0.47" +version = "3.0.48" # The full version, including alpha/beta/rc tags. -release = "3.0.47" +release = "3.0.48" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/src/prompt_toolkit/__init__.py b/src/prompt_toolkit/__init__.py index 7f6f30251..80da72d1e 100644 --- a/src/prompt_toolkit/__init__.py +++ b/src/prompt_toolkit/__init__.py @@ -28,7 +28,7 @@ from .shortcuts import PromptSession, print_formatted_text, prompt # Don't forget to update in `docs/conf.py`! -__version__ = "3.0.47" +__version__ = "3.0.48" assert pep440.match(__version__)