Skip to content

Commit

Permalink
Merge 13f0a2e into e748d21
Browse files Browse the repository at this point in the history
  • Loading branch information
kazhala authored Dec 7, 2021
2 parents e748d21 + 13f0a2e commit 65c3962
Show file tree
Hide file tree
Showing 13 changed files with 1,162 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 65c3962

Please sign in to comment.