From cc93961bf3408ebf22bfd44dc536fcd88973fcd4 Mon Sep 17 00:00:00 2001 From: AI Christianson Date: Mon, 24 Feb 2025 15:49:47 -0500 Subject: [PATCH] version bump --- CHANGELOG.md | 16 ++++++++++++++++ ra_aid/__version__.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd923eb..58fe0b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ 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.14.3] - 2025-02-24 + +### Added +- Added support for Claude 3.7 Sonnet model +- Added version display in startup configuration panel + +### Changed +- Updated language library dependencies (langgraph, langchain-core, langchain, langchain-openai, langchain-google-genai) +- Changed default Anthropic model from Claude 3.5 Sonnet to Claude 3.7 Sonnet + +### Fixed +- Fixed f-string syntax error in write_file.py +- Fixed bug where model selection on Anthropic was always using default instead of respecting user selection +- Fixed Anthropic key error message to reference the correct variable +- Added test for user-specified Anthropic model selection + ## [0.14.2] - 2025-02-19 ### Added diff --git a/ra_aid/__version__.py b/ra_aid/__version__.py index c833ade..c5b4ebe 100644 --- a/ra_aid/__version__.py +++ b/ra_aid/__version__.py @@ -1,3 +1,3 @@ """Version information.""" -__version__ = "0.14.2" +__version__ = "0.14.3"