Version bump
This commit is contained in:
parent
f096a06119
commit
2ab2117d1b
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
"""Version information."""
|
||||
|
||||
__version__ = "0.6.4"
|
||||
__version__ = "0.7.0"
|
||||
|
|
|
|||
Loading…
Reference in New Issue