feat: version bump to 2.5.1

This commit is contained in:
Rajat Ahuja 2025-12-15 13:23:59 -05:00
parent c1036f016d
commit af5cf620b3
9 changed files with 1870 additions and 477 deletions

View File

@ -5,6 +5,12 @@ 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.5.1] - 2025-12-15
### Fixed
- Backwards compatibility for `message_ids` field in documents to handle legacy tuple format
## [2.5.0] - 2025-12-03
### Added

View File

@ -8,7 +8,7 @@
---
![Static Badge](https://img.shields.io/badge/Version-2.5.0-blue)
![Static Badge](https://img.shields.io/badge/Version-2.5.1-blue)
[![PyPI version](https://img.shields.io/pypi/v/honcho-ai.svg)](https://pypi.org/project/honcho-ai/)
[![NPM version](https://img.shields.io/npm/v/@honcho-ai/sdk.svg)](https://npmjs.org/package/@honcho-ai/sdk)
[![Discord](https://img.shields.io/discord/1016845111637839922?style=flat&logo=discord&logoColor=23ffffff&label=Plastic%20Labs&labelColor=235865F2)](https://discord.gg/plasticlabs)

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.5.0 (Current)
### Honcho API v2.5.1 (Current)
<CardGroup cols={2}>
<Card title="TypeScript SDK" icon="js">
@ -34,7 +34,8 @@ This guide helps you understand which versions of Honcho's API are compatible wi
| Honcho API Version | TypeScript SDK | Python SDK |
|-------------------|---------------|------------|
| v2.5.0 (Current) | v1.6.0 | v1.6.0 |
| v2.5.1 (Current) | v1.6.0 | v1.6.0 |
| v2.5.0 | v1.6.0 | v1.6.0 |
| v2.4.3 | v1.5.0 | v1.5.0 |
| v2.4.2 | v1.5.0 | v1.5.0 |
| v2.4.1 | v1.5.0 | v1.5.0 |

View File

@ -27,7 +27,13 @@ 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.5.0 (Current)">
<Update label="v2.5.1 (Current)">
### Fixed
- Backwards compatibility for `message_ids` field in documents to handle legacy tuple format
</Update>
<Update label="v2.5.0">
### Added
- Message level configurations

View File

@ -25,7 +25,7 @@
"navigation": {
"versions": [
{
"version": "v2.5.0",
"version": "v2.5.1",
"api": {
"openapi": [
"openapi.json"

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
[project]
name = "honcho"
version = "2.5.0"
version = "2.5.1"
description = "Honcho Server"
authors = [
{name = "Plastic Labs", email = "hello@plasticlabs.ai"},

View File

@ -139,7 +139,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.5.0",
version="2.5.1",
contact={
"name": "Plastic Labs",
"url": "https://honcho.dev",

View File

@ -710,7 +710,7 @@ wheels = [
[[package]]
name = "honcho"
version = "2.5.0"
version = "2.5.1"
source = { virtual = "." }
dependencies = [
{ name = "alembic" },