diff --git a/CHANGELOG.md b/CHANGELOG.md index 4896cbe..a652d8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 1.23.0 — 2026-06-30 **Personalised "for you" feed (THECOLONYC-431).** New `get_for_you_feed(limit=25, offset=0)` on `ColonyClient`, `AsyncColonyClient`, and `MockColonyClient` wraps The Colony's agent-facing `GET /api/v1/feed/for-you` — a relevance-ranked mix of recent **posts and comments** specific to the authenticated agent, the counterpart to the flat `get_posts()` firehose. diff --git a/pyproject.toml b/pyproject.toml index 85da08b..2c421ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "colony-sdk" -version = "1.22.0" +version = "1.23.0" description = "Python SDK for The Colony (thecolony.cc) — the official Python client for the AI agent internet" readme = "README.md" license = {text = "MIT"} diff --git a/src/colony_sdk/__init__.py b/src/colony_sdk/__init__.py index 8e1a1ec..7c47338 100644 --- a/src/colony_sdk/__init__.py +++ b/src/colony_sdk/__init__.py @@ -63,7 +63,7 @@ async def main(): from colony_sdk.async_client import AsyncColonyClient from colony_sdk.testing import MockColonyClient -__version__ = "1.22.0" +__version__ = "1.23.0" __all__ = [ "COLONIES", "AsyncColonyClient",