From ebfdcf821ef4b87955f0047457e6e55dfdc0f0d7 Mon Sep 17 00:00:00 2001 From: user Date: Mon, 23 Dec 2024 15:53:23 -0500 Subject: [PATCH] Version bump --- CHANGELOG.md | 4 ++++ ra_aid/__version__.py | 2 +- ra_aid/tools/human.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88d8cbd..4ff4333 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/ra_aid/__version__.py b/ra_aid/__version__.py index ca25270..fc49a68 100644 --- a/ra_aid/__version__.py +++ b/ra_aid/__version__.py @@ -1,3 +1,3 @@ """Version information.""" -__version__ = "0.9.0" +__version__ = "0.9.1" diff --git a/ra_aid/tools/human.py b/ra_aid/tools/human.py index 770da44..f604642 100644 --- a/ra_aid/tools/human.py +++ b/ra_aid/tools/human.py @@ -37,7 +37,7 @@ def ask_human(question: str) -> str: session = PromptSession( multiline=True, key_bindings=create_keybindings(), - prompt_continuation='.', + prompt_continuation='. ', ) print()