diff --git a/packages/python-sdk/CHANGELOG.md b/packages/python-sdk/CHANGELOG.md index af68e34..586f84d 100644 --- a/packages/python-sdk/CHANGELOG.md +++ b/packages/python-sdk/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to `upstash-box` (Python) are documented here. +## 0.1.2 + +- Add `ClaudeCode.FABLE_5` (`anthropic/claude-fable-5`) to the Claude Code model + options, mirroring `@upstash/box` 0.5.2. + ## 0.1.1 - Add Alpine runtime variants to the `Runtime` type: `node-alpine`, diff --git a/packages/python-sdk/RELEASE.md b/packages/python-sdk/RELEASE.md index 31f5622..cf1972a 100644 --- a/packages/python-sdk/RELEASE.md +++ b/packages/python-sdk/RELEASE.md @@ -11,6 +11,7 @@ Each release records the JS feature level it reached parity with: | upstash-box (PyPI) | parity as of `@upstash/box` | | ------------------ | --------------------------- | | 0.1.0 | 0.5.0 | +| 0.1.2 | 0.5.2 | When a JS feature is mirrored, bump the Python patch/minor version and update the row above (and `__version__` in `upstash_box/__init__.py` + `version` in diff --git a/packages/python-sdk/pyproject.toml b/packages/python-sdk/pyproject.toml index 0e866cc..f429902 100644 --- a/packages/python-sdk/pyproject.toml +++ b/packages/python-sdk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "upstash-box" -version = "0.1.1" +version = "0.1.2" description = "Upstash Box SDK - Python client for async and parallel AI coding agents" readme = "README.md" license = { text = "MIT" } diff --git a/packages/python-sdk/upstash_box/__init__.py b/packages/python-sdk/upstash_box/__init__.py index 6356eea..b393bbc 100644 --- a/packages/python-sdk/upstash_box/__init__.py +++ b/packages/python-sdk/upstash_box/__init__.py @@ -107,7 +107,7 @@ WebhookConfig, ) -__version__ = "0.1.1" +__version__ = "0.1.2" __all__ = [ # Clients (sync canonical + async variants)