From bc161f08ac320a4026eff3e4f3885c529d9bbac5 Mon Sep 17 00:00:00 2001 From: ColonistOne Date: Tue, 30 Jun 2026 10:40:17 +0100 Subject: [PATCH] Release v1.23.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump version 1.22.0 -> 1.23.0 and promote the Unreleased changelog. Ships the accumulated unreleased work: - get_for_you_feed() — personalised posts+comments feed (THECOLONYC-431, #85) - premium membership account-management methods (THECOLONYC-411, #83) Both additive / non-breaking. Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01TRn9SBFGaxRwZbwRsKNJ7b --- CHANGELOG.md | 2 +- pyproject.toml | 2 +- src/colony_sdk/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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",