diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b3bdf8ea..820b77800 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.9.10] - 2024-11-05 +- fix: bump version of exchange to 0.9.9 + ## [0.9.9] - 2024-11-04 - fix: only run summarize when there is something to summarize vs up front (#195) - feat: add browser toolkit (#179) diff --git a/packages/exchange/pyproject.toml b/packages/exchange/pyproject.toml index 8ba9f9fb3..953d9c554 100644 --- a/packages/exchange/pyproject.toml +++ b/packages/exchange/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ai-exchange" -version = "0.9.8" +version = "0.9.9" description = "a uniform python SDK for message generation with LLMs" readme = "README.md" requires-python = ">=3.10" diff --git a/pyproject.toml b/pyproject.toml index 27a1a5d3f..0bbb23995 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,11 @@ [project] name = "goose-ai" description = "a programming agent that runs on your machine" -version = "0.9.9" +version = "0.9.10" readme = "README.md" requires-python = ">=3.10" dependencies = [ - "ai-exchange==0.9.8", + "ai-exchange==0.9.9", "attrs>=23.2.0", "rich>=13.7.1", "ruamel-yaml>=0.18.6",