diff --git a/CHANGELOG.md b/CHANGELOG.md index aa56d37..ba00e2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,29 +1,15 @@ # Changelog All notable changes to this project's latest version. -## [0.1.25] - 2025-11-12 - -### Bug Fixes - -- Added agent ID to all templates json ([#76](https://github.com/your-org/your-repo/issues/76)) -- Add shorthand option for confirmation skip in teardown command -- Update console output formatting for extra parameters in run and run_stream commands +## [0.1.26] - 2025-11-12 ### Features -- Removed capacity tracking of local agents -- Improve init message -- Enhance error handling and suggestions in deployment and upload commands -- Enhanced init command -- Update deployment and initialization to include dashboard URLs and enhance agent configuration -- Add structured serialization and deserialization methods to CoreSerializer +- Enhance serialization handling in client and server components +- Standardize response format across CLI, SDK, and clients ### Miscellaneous Tasks -- Bump version to v0.1.25 - -### Refactor - -- Improve error handling and messaging in WebSocket and REST client +- Bump version to v0.1.26 diff --git a/pyproject.toml b/pyproject.toml index b442798..0e92146 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "hatchling.build" [project] name = "runagent" -version = "0.1.26" +version = "0.1.27" 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.26" +python_version = "0.1.27" 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.26" +target-version = "0.1.27" select = [ "E", # pycodestyle errors "W", # pycodestyle warnings diff --git a/runagent-go/runagent/version.go b/runagent-go/runagent/version.go index 760a003..c4f9f77 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.26" +const Version = "0.1.27" diff --git a/runagent-rust/runagent/Cargo.toml b/runagent-rust/runagent/Cargo.toml index ede2641..8a16b62 100644 --- a/runagent-rust/runagent/Cargo.toml +++ b/runagent-rust/runagent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "runagent" -version = "0.1.26" +version = "0.1.27" 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 4e5924c..c6b9f3b 100644 --- a/runagent-ts/package-lock.json +++ b/runagent-ts/package-lock.json @@ -1,12 +1,12 @@ { "name": "runagent", - "version": "0.1.26", + "version": "0.1.27", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "runagent", - "version": "0.1.26", + "version": "0.1.27", "dependencies": { "better-sqlite3": "^12.2.0" }, diff --git a/runagent-ts/package.json b/runagent-ts/package.json index 7ff82f2..3625d42 100644 --- a/runagent-ts/package.json +++ b/runagent-ts/package.json @@ -1,6 +1,6 @@ { "name": "runagent", - "version": "0.1.26", + "version": "0.1.27", "type": "module", "files": [ "dist" diff --git a/runagent/__init__.py b/runagent/__init__.py index e16f10b..34d1df8 100644 --- a/runagent/__init__.py +++ b/runagent/__init__.py @@ -5,7 +5,7 @@ built with frameworks like LangGraph, LangChain, and LlamaIndex. """ -__version__ = "0.1.26" +__version__ = "0.1.27" from .client import RunAgentClient diff --git a/runagent/__version__.py b/runagent/__version__.py index c8ec146..19492a9 100644 --- a/runagent/__version__.py +++ b/runagent/__version__.py @@ -1 +1 @@ -__version__ = "0.1.26" +__version__ = "0.1.27"