prompt-hs 1.1.0.0 → 1.1.0.1
raw patch · 3 files changed
+3/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +1/−1
- prompt-hs.cabal +1/−1
- src/System/Prompt.hs +1/−1
CHANGELOG.md view
@@ -22,4 +22,4 @@ ## Version 1.1.0.0 (2025-07-14) -* Remove initialSelectionChoosableItem class function; it didn't always have a sensible implementation and isn't needed+* **BREAKING:** Remove initialSelectionChoosableItem class function; it didn't always have a sensible implementation and isn't needed
prompt-hs.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: prompt-hs-version: 1.1.0.0+version: 1.1.0.1 synopsis: A user-friendly, dependently-typed library for asking your users questions description: A library making use of the terminal package to prompt users for answers in a CLI context. .
src/System/Prompt.hs view
@@ -150,7 +150,7 @@ -- | Gets the text which will be displayed to the user for a given instruction. instructionTextMulti :: ChoiceInstruction -> Text instructionTextMulti = \case- ChoiceInstructionNormal -> "You can type to search, or use the arrow keys. Press enter to select/deselect, and ctrl+enter to confirm."+ ChoiceInstructionNormal -> "You can type to search, or use the arrow keys. Press space to select/deselect, and enter to confirm." ChoiceInstructionNoOptionSelected -> "No options match this search. Try expanding your filter with backspace to see more options." class IsPromptChoiceState a where