chore (docs): Update Versions and Changelogs (#172)

This commit is contained in:
Vineeth Voruganti 2025-07-30 17:22:28 -04:00 committed by GitHub
parent 2871ab8248
commit bcb3b6106a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 25 additions and 10 deletions

View File

@ -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

View File

@ -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)

View File

@ -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)
<CardGroup cols={2}>
<Card title="TypeScript SDK" icon="js">
@ -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 |

View File

@ -27,8 +27,15 @@ Welcome to the Honcho changelog! This section documents all notable changes to t
### Honcho API and SDK Changelogs
<Tabs>
<Tab title="Honcho API">
<Update label="v2.1.2 (Current)">
### Fixed
<Update label="v2.1.1 (Current)">
- 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
</Update>
<Update label="v2.1.1">
### Added
- Test harness for custom Honcho evaluations
@ -208,7 +215,7 @@ Welcome to the Honcho changelog! This section documents all notable changes to t
<Tab title="Python SDK">
[Python SDK](https://pypi.org/project/honcho-ai/)
<Update label="v1.2.2 (Current)">
<Update label="v1.2.2">
### Added
- Filter parameter to various endpoints
@ -244,7 +251,7 @@ Welcome to the Honcho changelog! This section documents all notable changes to t
<Tab title="TypeScript SDK">
[TypeScript SDK](https://www.npmjs.com/package/@honcho-ai/sdk)
<Update label="v1.2.1 (Current)">
<Update label="v1.2.1">
### Added
- linting via Biome

View File

@ -19,7 +19,7 @@
"navigation": {
"versions": [
{
"version": "v2.1.1",
"version": "v2.1.2",
"api": {
"openapi": [
"openapi.documented.yml"

View File

@ -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"},

View File

@ -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",

View File

@ -822,7 +822,7 @@ wheels = [
[[package]]
name = "honcho"
version = "2.1.1"
version = "2.1.2"
source = { virtual = "." }
dependencies = [
{ name = "alembic" },