Skip to content
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

Add changelog and bump version to 2.0.0 #300

Merged
merged 1 commit into from
Aug 10, 2023
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
26 changes: 26 additions & 0 deletions docs/pages/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,32 @@
Changelog
*********

2.0.0 (2023-07-25)
###################

* Updated dependencies.
* Modified default choice selection based on the ``Choice`` value. Now, it is
not necessary to pass the same instance of the ``Choice`` object: the same
``value`` may be used.
* Fixed various minor bugs in development scripts and continuous integration.
* Improved continuous integration and testing process.
* Added pull request and issue templates to the GitHub repository.
* Implemented lazy function call for obtaining choices.
* Expanded the test matrix to include additional Python versions.
* Added the ability to specify the start point of a file path.
* Enabled displaying arbitrary paths in file path input.
* Allowed skipping of questions in the ``unsafe_ask`` function.
* Resolved typing bugs.
* Included a password confirmation example.
* Now returning selected choices even if they are disabled.
* Added support for Emacs keys (:kbd:`Ctrl+N` and :kbd:`Ctrl+P`).
* Fixed rendering errors in the documentation.
* Introduced a new ``print`` question type.
* Deprecated support for Python 3.6 and 3.7.
* Added dynamic instruction messages for ``checkbox`` and ``confirm``.
* Removed the upper bound from the Python version specifier.
* Added a ``press_any_key_to_continue`` prompt.

1.10.0 (2021-07-10)
###################

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.10.0"
version = "2.0.0"
description = "Python library to build pretty command line user prompts ⭐️"
authors = [ "Tom Bocklisch <[email protected]>",]
maintainers = [ "Tom Bocklisch <[email protected]>", "Kian Cross <[email protected]>"]
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.10.0"
__version__ = "2.0.0"
Loading