Version bump

This commit is contained in:
user 2024-12-23 15:53:23 -05:00
parent aea69af9c1
commit ebfdcf821e
3 changed files with 6 additions and 2 deletions

View File

@ -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/), 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). 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 ## [0.9.0] - 2024-12-23
- Improve agent interruption UX by allowing user to specify feedback or exit the program entirely. - Improve agent interruption UX by allowing user to specify feedback or exit the program entirely.

View File

@ -1,3 +1,3 @@
"""Version information.""" """Version information."""
__version__ = "0.9.0" __version__ = "0.9.1"

View File

@ -37,7 +37,7 @@ def ask_human(question: str) -> str:
session = PromptSession( session = PromptSession(
multiline=True, multiline=True,
key_bindings=create_keybindings(), key_bindings=create_keybindings(),
prompt_continuation='.', prompt_continuation='. ',
) )
print() print()