diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 61910d7..13dede7 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -90,6 +90,9 @@ jobs: needs: detect-release if: needs.detect-release.outputs.should_release == 'true' uses: ./.github/workflows/reusable-sdk-release.yml + permissions: + contents: read + id-token: write with: sdk: python working-directory: . @@ -102,6 +105,9 @@ jobs: needs: detect-release if: needs.detect-release.outputs.should_release == 'true' uses: ./.github/workflows/reusable-sdk-release.yml + permissions: + contents: read + id-token: write with: sdk: typescript working-directory: runagent-ts diff --git a/CHANGELOG.md b/CHANGELOG.md index ba00e2f..decd763 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,14 @@ # Changelog All notable changes to this project's latest version. -## [0.1.26] - 2025-11-12 +## [0.1.27] - 2025-11-13 -### Features +### Miscellaneous Tasks -- Enhance serialization handling in client and server components -- Standardize response format across CLI, SDK, and clients +- Bump version to v0.1.27 -### Miscellaneous Tasks +### Refactor -- Bump version to v0.1.26 +- Update GitHub Actions workflow and enhance TypeScript SDK diff --git a/pyproject.toml b/pyproject.toml index 0e92146..5041e5d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "hatchling.build" [project] name = "runagent" -version = "0.1.27" +version = "0.1.28" description = "A command-line tool and SDK for deploying, managing, and interacting with AI agents" readme = "README.md" requires-python = ">=3.9" @@ -103,7 +103,7 @@ line_length = 88 skip = ["docs"] [tool.mypy] -python_version = "0.1.27" +python_version = "0.1.28" warn_return_any = true warn_unused_configs = true disallow_untyped_defs = true @@ -159,7 +159,7 @@ fail_under = 80 [tool.ruff] line-length = 88 -target-version = "0.1.27" +target-version = "0.1.28" select = [ "E", # pycodestyle errors "W", # pycodestyle warnings diff --git a/runagent-go/runagent/version.go b/runagent-go/runagent/version.go index c4f9f77..e67e040 100644 --- a/runagent-go/runagent/version.go +++ b/runagent-go/runagent/version.go @@ -1,4 +1,4 @@ package runagent // Version represents the current version of the RunAgent Go SDK -const Version = "0.1.27" +const Version = "0.1.28" diff --git a/runagent-rust/runagent/Cargo.toml b/runagent-rust/runagent/Cargo.toml index 8a16b62..4c3db2d 100644 --- a/runagent-rust/runagent/Cargo.toml +++ b/runagent-rust/runagent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "runagent" -version = "0.1.27" +version = "0.1.28" edition = "2021" description = "RunAgent SDK for Rust - Client SDK for interacting with deployed AI agents" license = "MIT" diff --git a/runagent-ts/package-lock.json b/runagent-ts/package-lock.json index c6b9f3b..ca464ca 100644 --- a/runagent-ts/package-lock.json +++ b/runagent-ts/package-lock.json @@ -1,12 +1,12 @@ { "name": "runagent", - "version": "0.1.27", + "version": "0.1.28", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "runagent", - "version": "0.1.27", + "version": "0.1.28", "dependencies": { "better-sqlite3": "^12.2.0" }, diff --git a/runagent-ts/package.json b/runagent-ts/package.json index 3625d42..4a92520 100644 --- a/runagent-ts/package.json +++ b/runagent-ts/package.json @@ -1,6 +1,6 @@ { "name": "runagent", - "version": "0.1.27", + "version": "0.1.28", "type": "module", "files": [ "dist" diff --git a/runagent/__init__.py b/runagent/__init__.py index 34d1df8..1f82c72 100644 --- a/runagent/__init__.py +++ b/runagent/__init__.py @@ -5,7 +5,7 @@ built with frameworks like LangGraph, LangChain, and LlamaIndex. """ -__version__ = "0.1.27" +__version__ = "0.1.28" from .client import RunAgentClient diff --git a/runagent/__version__.py b/runagent/__version__.py index 19492a9..f7ee773 100644 --- a/runagent/__version__.py +++ b/runagent/__version__.py @@ -1 +1 @@ -__version__ = "0.1.27" +__version__ = "0.1.28"