Skip to content

Commit

Permalink
Merge a5fda50 into e748d21
Browse files Browse the repository at this point in the history
  • Loading branch information
kazhala committed Dec 7, 2021
2 parents e748d21 + a5fda50 commit 5c843de
Show file tree
Hide file tree
Showing 13 changed files with 1,158 additions and 276 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

Notable changes are documented in this file.

## dev

### Fixed

- Fixed InvalidArgument raised for callable default

### Added

- number prompt

## 0.3.0 (12/10/2021)

**New Documentation: [inquirerpy.readthedocs.io](https://inquirerpy.readthedocs.io/en/latest/)**
Expand Down
1 change: 1 addition & 0 deletions InquirerPy/enum.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
INQUIRERPY_POINTER_SEQUENCE: str = "\u276f"
INQUIRERPY_FILL_CIRCLE_SEQUENCE: str = "\u25c9"
INQUIRERPY_EMPTY_CIRCLE_SEQUENCE: str = "\u25cb"
INQUIRERPY_QMARK_SEQUENCE: str = "\u003f"
1 change: 1 addition & 0 deletions InquirerPy/inquirer.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@
from InquirerPy.prompts import FuzzyPrompt as fuzzy
from InquirerPy.prompts import InputPrompt as text
from InquirerPy.prompts import ListPrompt as select
from InquirerPy.prompts import NumberPrompt as number
from InquirerPy.prompts import RawlistPrompt as rawlist
from InquirerPy.prompts import SecretPrompt as secret
1 change: 1 addition & 0 deletions InquirerPy/prompts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
from InquirerPy.prompts.fuzzy import FuzzyPrompt
from InquirerPy.prompts.input import InputPrompt
from InquirerPy.prompts.list import ListPrompt
from InquirerPy.prompts.number import NumberPrompt
from InquirerPy.prompts.rawlist import RawlistPrompt
from InquirerPy.prompts.secret import SecretPrompt
Loading

0 comments on commit 5c843de

Please sign in to comment.