diff --git a/CHANGELOG.md b/CHANGELOG.md index 36eeb6b5..b01e7715 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [2.1.2] - 2025-07-30 + +### Fixed + +- Summarizer module to ignore empty summaries and pass appropriate one to get_context +- Structured Outputs calls with OpenAI provider to pass strict=True to Pydantic Schema + ## [2.1.1] - 2025-07-23 ### Added diff --git a/README.md b/README.md index 35646e8d..02db4c1b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # 🫡 Honcho -![Static Badge](https://img.shields.io/badge/Version-2.1.1-blue) +![Static Badge](https://img.shields.io/badge/Version-2.1.2-blue) [![Discord](https://img.shields.io/discord/1016845111637839922?style=flat&logo=discord&logoColor=23ffffff&label=Plastic%20Labs&labelColor=235865F2)](https://discord.gg/plasticlabs) [![arXiv](https://img.shields.io/badge/arXiv-2310.06983-b31b1b.svg)](https://arxiv.org/abs/2310.06983) ![GitHub License](https://img.shields.io/github/license/plastic-labs/honcho) diff --git a/docs/changelog/compatibility-guide.mdx b/docs/changelog/compatibility-guide.mdx index 3ef1e222..2e11aa23 100644 --- a/docs/changelog/compatibility-guide.mdx +++ b/docs/changelog/compatibility-guide.mdx @@ -8,7 +8,7 @@ This guide helps you understand which versions of Honcho's API are compatible wi ## Version Compatibility -### Honcho API v2.1.1 (Current) +### Honcho API v2.1.2 (Current) @@ -35,7 +35,8 @@ This guide helps you understand which versions of Honcho's API are compatible wi | Honcho API Version | TypeScript SDK | Python SDK | |-------------------|---------------|------------| -| v2.1.1 (Current) | v1.2.1 | v1.2.2 | +| v2.1.2 (Current) | v1.2.1 | v1.2.2 | +| v2.1.1 | v1.2.1 | v1.2.2 | | v2.1.0 | v1.2.1 | v1.2.2 | | v2.0.5 | v1.1.0 | v1.1.0 | | v2.0.4 | v1.1.0 | v1.1.0 | diff --git a/docs/changelog/introduction.mdx b/docs/changelog/introduction.mdx index 8d24ca63..7676a917 100644 --- a/docs/changelog/introduction.mdx +++ b/docs/changelog/introduction.mdx @@ -27,8 +27,15 @@ Welcome to the Honcho changelog! This section documents all notable changes to t ### Honcho API and SDK Changelogs + + ### Fixed - + - Summarizer module to ignore empty summaries and pass appropriate one to get_context + - Structured Outputs calls with OpenAI provider to pass strict=True to Pydantic Schema + + + + ### Added - Test harness for custom Honcho evaluations @@ -208,7 +215,7 @@ Welcome to the Honcho changelog! This section documents all notable changes to t [Python SDK](https://pypi.org/project/honcho-ai/) - + ### Added - Filter parameter to various endpoints @@ -244,7 +251,7 @@ Welcome to the Honcho changelog! This section documents all notable changes to t [TypeScript SDK](https://www.npmjs.com/package/@honcho-ai/sdk) - + ### Added - linting via Biome diff --git a/docs/docs.json b/docs/docs.json index 331897bd..44489566 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -19,7 +19,7 @@ "navigation": { "versions": [ { - "version": "v2.1.1", + "version": "v2.1.2", "api": { "openapi": [ "openapi.documented.yml" diff --git a/pyproject.toml b/pyproject.toml index 6c8f54a0..e63045a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "honcho" -version = "2.1.1" +version = "2.1.2" description = "Honcho Server" authors = [ {name = "Plastic Labs", email = "hello@plasticlabs.ai"}, diff --git a/src/main.py b/src/main.py index 62a86f60..ce2b0274 100644 --- a/src/main.py +++ b/src/main.py @@ -115,7 +115,7 @@ app = FastAPI( title="Honcho API", summary="The Identity Layer for the Agentic World", description="""Honcho is a platform for giving agents user-centric memory and social cognition""", - version="2.1.1", + version="2.1.2", contact={ "name": "Plastic Labs", "url": "https://honcho.dev", diff --git a/uv.lock b/uv.lock index 9a4110bd..f158bcef 100644 --- a/uv.lock +++ b/uv.lock @@ -822,7 +822,7 @@ wheels = [ [[package]] name = "honcho" -version = "2.1.1" +version = "2.1.2" source = { virtual = "." } dependencies = [ { name = "alembic" },