From f852f48658e0cd9a4c191eac15406b4a11294b65 Mon Sep 17 00:00:00 2001 From: Kian Cross Date: Thu, 15 Jul 2021 11:06:22 +0100 Subject: [PATCH] Release 1.10.0 (#137) --- docs/pages/changelog.rst | 15 +++++++++++++++ pyproject.toml | 2 +- questionary/version.py | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/docs/pages/changelog.rst b/docs/pages/changelog.rst index 2ec1503e..3a845053 100644 --- a/docs/pages/changelog.rst +++ b/docs/pages/changelog.rst @@ -4,6 +4,21 @@ Changelog ********* +1.10.0 (2021-07-10) +################### + +* Use direct image URLs in ``README.md``. +* Switched to ``poetry-core``. +* Relax Python version constraint. +* Add ``pointer`` option to ``checkbox`` and ``select``. +* Change enter instruction for multiline input. +* Removed unnecessary Poetry includes. +* Minor updates to documentation. +* Added additional unit tests. +* Added ``use_arrow_keys`` and ``use_jk_keys`` options to ``checkbox``. +* Added ``use_jk_keys`` and ``show_selected`` options to ``select``. +* Fix highlighting bug when using ``default`` parameter for ``select``. + 1.9.0 (2020-12-20) ################## diff --git a/pyproject.toml b/pyproject.toml index 2ee76998..13e555ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ exclude = "((.eggs | .git | .pytype | .pytest_cache | build | dist))" [tool.poetry] name = "questionary" -version = "1.9.0" +version = "1.10.0" description = "Python library to build pretty command line user prompts ⭐️" authors = [ "Tom Bocklisch ",] maintainers = [ "Tom Bocklisch ", "Kian Cross "] diff --git a/questionary/version.py b/questionary/version.py index 0a0a43a5..fcfdf383 100644 --- a/questionary/version.py +++ b/questionary/version.py @@ -1 +1 @@ -__version__ = "1.9.0" +__version__ = "1.10.0"