Skip to content
This repository was archived by the owner on Jun 7, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.1.6"
".": "2.0.0"
}
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## [2.0.0](https://github.com/pattern-zones-co/koine/compare/v1.1.6...v2.0.0) (2025-12-25)


### ⚠ BREAKING CHANGES

* **sdk:** Remove standalone functions in favor of factory pattern.
* stream_text now returns a context manager instead of a coroutine. Must use `async with stream_text(...)` instead of `await stream_text(...)`.

### Features

* **ci:** add automated PyPI publishing for Python SDK ([#52](https://github.com/pattern-zones-co/koine/issues/52)) ([dbe045c](https://github.com/pattern-zones-co/koine/commit/dbe045cb330663d0571f89f1ab66c1a8e5e92a9d))
* Python SDK for Koine gateway ([#42](https://github.com/pattern-zones-co/koine/issues/42)) ([65ef9b7](https://github.com/pattern-zones-co/koine/commit/65ef9b7b2e6af2f89bc94ca18d46a6424d0dcec2))


### Bug Fixes

* **ci:** improve issue triage workflow and disable PR review ([#44](https://github.com/pattern-zones-co/koine/issues/44)) ([be4f1e2](https://github.com/pattern-zones-co/koine/commit/be4f1e2fad7277e10caca1fc0a9bcaff4d54fd67))
* **sdk:** address TypeScript SDK review findings ([#48](https://github.com/pattern-zones-co/koine/issues/48)) ([a5da0f3](https://github.com/pattern-zones-co/koine/commit/a5da0f3f295d6f47927cdc0a4a4aad152e3e80c4))


### Code Refactoring

* move SDK examples into package directories ([#46](https://github.com/pattern-zones-co/koine/issues/46)) ([6f1a098](https://github.com/pattern-zones-co/koine/commit/6f1a098761bdceeb7e16ab5c419d4e5f712a3a91)), closes [#40](https://github.com/pattern-zones-co/koine/issues/40)
* **sdk:** Python SDK modular architecture with factory pattern ([#50](https://github.com/pattern-zones-co/koine/issues/50)) ([6ae0ddf](https://github.com/pattern-zones-co/koine/commit/6ae0ddfafa8e5c6b187982281525af8d998a4947))

## [1.1.6](https://github.com/pattern-zones-co/koine/compare/v1.1.5...v1.1.6) (2025-12-25)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "koine",
"version": "1.1.6",
"version": "2.0.0",
"private": true,
"type": "module",
"description": "Koine - HTTP gateway and SDK for Claude Code CLI",
Expand Down
2 changes: 1 addition & 1 deletion packages/gateway/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@patternzones/koine",
"private": true,
"version": "1.1.6",
"version": "2.0.0",
"description": "HTTP gateway service for Claude Code CLI",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/sdks/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "koine-sdk"
version = "1.1.6"
version = "2.0.0"
description = "Python SDK for Koine gateway"
readme = "README.md"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/sdks/python/src/koine_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"""

# x-release-please-start-version
__version__ = "1.1.6"
__version__ = "2.0.0"
# x-release-please-end

# Client factory (primary API)
Expand Down
2 changes: 1 addition & 1 deletion packages/sdks/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@patternzones/koine-sdk",
"version": "1.1.6",
"version": "2.0.0",
"description": "TypeScript SDK for Koine gateway",
"repository": {
"type": "git",
Expand Down