8000 Release 1.10.0 by kiancross · Pull Request #137 · tmbo/questionary · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Release 1.10.0 #137

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/pages/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
##################

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <tombocklisch@gmail.com>",]
maintainers = [ "Tom Bocklisch <tombocklisch@gmail.com>", "Kian Cross <kian@kiancross.co.uk>"]
Expand Down
2 changes: 1 addition & 1 deletion questionary/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.9.0"
__version__ = "1.10.0"
0