From f08e9455b664f5ac58d2484376d0928a15a69a2f Mon Sep 17 00:00:00 2001 From: AI Christianson Date: Thu, 13 Mar 2025 07:17:26 -0400 Subject: [PATCH] version bump --- CHANGELOG.md | 7 +++++++ ra_aid/__version__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 50776b1..750fa96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ 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.17.1] 2025-03-13 + +### Fixed +- Fixed bug with `process_thinking_content` function by moving it from `agent_utils` to `ra_aid.text.processing` module +- Fixed config parameter handling in research request functions +- Updated development setup instructions in README to use `pip install -e ".[dev]"` instead of `pip install -r requirements-dev.txt` + ## [0.17.0] 2025-03-12 ### Added diff --git a/ra_aid/__version__.py b/ra_aid/__version__.py index 7486f15..3b8c936 100644 --- a/ra_aid/__version__.py +++ b/ra_aid/__version__.py @@ -1,3 +1,3 @@ """Version information.""" -__version__ = "0.17.0" +__version__ = "0.17.1"