Version bump
This commit is contained in:
parent
aea69af9c1
commit
ebfdcf821e
|
|
@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [0.9.1] - 2024-12-23
|
||||
|
||||
- Fix ask human multiline continuation.
|
||||
|
||||
## [0.9.0] - 2024-12-23
|
||||
|
||||
- Improve agent interruption UX by allowing user to specify feedback or exit the program entirely.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
"""Version information."""
|
||||
|
||||
__version__ = "0.9.0"
|
||||
__version__ = "0.9.1"
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ def ask_human(question: str) -> str:
|
|||
session = PromptSession(
|
||||
multiline=True,
|
||||
key_bindings=create_keybindings(),
|
||||
prompt_continuation='.',
|
||||
prompt_continuation='. ',
|
||||
)
|
||||
|
||||
print()
|
||||
|
|
|
|||
Loading…
Reference in New Issue