Version bump

This commit is contained in:
AI Christianson 2024-12-20 13:45:34 -05:00
parent f096a06119
commit 2ab2117d1b
3 changed files with 8 additions and 4 deletions

View File

@ -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/), 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).
## [Unreleased] ## [0.7.0] - 2024-12-20
- Make delete_tasks tool available to planning agent. - Make delete_tasks tool available to planning agent.
- Get rid of implementation args as they are not used. - 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.) - Handle keyboard interrupt (ctrl-c.)
- Disable PAGERs for shell commands so agent can work autonomously. - Disable PAGERs for shell commands so agent can work autonomously.
- Reduce model temperatures to 0. - Reduce model temperatures to 0.
- Update dependencies.
## [0.6.4] - 2024-12-19 ## [0.6.4] - 2024-12-19

View File

@ -22,9 +22,12 @@ classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules" "Topic :: Software Development :: Libraries :: Python Modules"
] ]
dependencies = [ dependencies = [
"langchain-anthropic", "langchain-anthropic>=0.3.1",
"langchain-openai", "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", "rich>=13.0.0",
"GitPython==3.1.43", "GitPython==3.1.43",
"fuzzywuzzy==0.18.0", "fuzzywuzzy==0.18.0",

View File

@ -1,3 +1,3 @@
"""Version information.""" """Version information."""
__version__ = "0.6.4" __version__ = "0.7.0"