From 6e39d39b429f3635aa3f50ecb501b5cccbe25c71 Mon Sep 17 00:00:00 2001 From: AI Christianson Date: Fri, 7 Mar 2025 14:14:34 -0500 Subject: [PATCH] version bump --- CHANGELOG.md | 21 +++++++++++++++++++++ ra_aid/__version__.py | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d55ae25..0aeaf13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,27 @@ 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.16.0] 2025-03-07 + +### Added +- Database-backed memory system with SQLite (.ra-aid/pk.db) +- Repository pattern for memory access (KeyFactRepository, KeySnippetRepository, ResearchNoteRepository) +- Memory garbage collection with configurable thresholds +- "--wipe-project-memory" flag to reset memory +- Memory statistics in status panel +- Propagation depth control for agent_should_exit +- Fixed string parameter for ripgrep tool +- Support for Claude 3.7 Sonnet thinking tokens in expert tool + +### Changed +- Enhanced file logging with support for .ra-aid/logs/ +- Improved CiaynAgent with better tool validation and execution +- Memory-related prompt improvements + +### Fixed +- Various bug fixes in tool execution +- Test improvements for memory system + ## [0.15.2] - 2025-02-27 ### Added diff --git a/ra_aid/__version__.py b/ra_aid/__version__.py index 3af5aa4..7203c47 100644 --- a/ra_aid/__version__.py +++ b/ra_aid/__version__.py @@ -1,3 +1,3 @@ """Version information.""" -__version__ = "0.15.2" +__version__ = "0.16.0"