From 2ab2117d1bcaf609db710632bc87836f4cd6fa30 Mon Sep 17 00:00:00 2001 From: AI Christianson Date: Fri, 20 Dec 2024 13:45:34 -0500 Subject: [PATCH] Version bump --- CHANGELOG.md | 3 ++- pyproject.toml | 7 +++++-- ra_aid/__version__.py | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 987f281..19577ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 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). -## [Unreleased] +## [0.7.0] - 2024-12-20 - Make delete_tasks tool available to planning agent. - Get rid of implementation args as they are not used. @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Handle keyboard interrupt (ctrl-c.) - Disable PAGERs for shell commands so agent can work autonomously. - Reduce model temperatures to 0. +- Update dependencies. ## [0.6.4] - 2024-12-19 diff --git a/pyproject.toml b/pyproject.toml index 95374f3..cc3d0af 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,9 +22,12 @@ classifiers = [ "Topic :: Software Development :: Libraries :: Python Modules" ] dependencies = [ - "langchain-anthropic", + "langchain-anthropic>=0.3.1", "langchain-openai", - "langgraph", + "langgraph>=0.2.60", + "langgraph-checkpoint>=2.0.9", + "langgraph-sdk>=0.1.48", + "langchain-core>=0.3.28", "rich>=13.0.0", "GitPython==3.1.43", "fuzzywuzzy==0.18.0", diff --git a/ra_aid/__version__.py b/ra_aid/__version__.py index b0e50c3..26a803c 100644 --- a/ra_aid/__version__.py +++ b/ra_aid/__version__.py @@ -1,3 +1,3 @@ """Version information.""" -__version__ = "0.6.4" +__version__ = "0.7.0"