From 3a327d0aeef3f9d3affab433b2214d30cb6623dc Mon Sep 17 00:00:00 2001 From: Gk Date: Sat, 4 Apr 2026 15:08:57 -0700 Subject: [PATCH] =?UTF-8?q?release:=20v0.1.3=20=E2=80=94=20update=20comman?= =?UTF-8?q?d,=20--worker,=20--on-failure,=20key=20regen=20fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump version to 0.1.3 for PyPI release. Includes all fixes from recent PRs: - cueapi update command (PATCH /v1/cues/{id}) - --worker flag on create (sets transport=worker) - --on-failure flag on create - --callback alias for --url - key regenerate sends X-Confirm-Destructive header Co-Authored-By: Claude Opus 4.6 (1M context) --- cueapi/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cueapi/__init__.py b/cueapi/__init__.py index d31f86e..460dc73 100644 --- a/cueapi/__init__.py +++ b/cueapi/__init__.py @@ -1,3 +1,3 @@ """CueAPI CLI — Your Agents' Cue to Act.""" -__version__ = "0.1.0" +__version__ = "0.1.3" diff --git a/pyproject.toml b/pyproject.toml index 75db340..258ca70 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "cueapi" -version = "0.1.2" +version = "0.1.3" description = "CLI for CueAPI - the scheduling API for AI agents" readme = "README.md" license = { text = "MIT" }