From d316bf828830d0d1896c995384aada0f84a865f6 Mon Sep 17 00:00:00 2001 From: sawradip Date: Sun, 21 Dec 2025 00:12:06 +0600 Subject: [PATCH 1/3] fix: update output reference in create-release workflow - Changed the output reference from `steps.create-release.outputs.release_created` to `steps.set-release-flag.outputs.release_created` for clarity and correctness. - Renamed the step to "Set release created flag" to better reflect its purpose. --- .github/workflows/create-release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index d29e7cf..9bb7a91 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -148,7 +148,7 @@ jobs: permissions: contents: write outputs: - release_created: ${{ steps.create-release.outputs.release_created }} + release_created: ${{ steps.set-release-flag.outputs.release_created }} steps: - uses: actions/checkout@v4 @@ -279,7 +279,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Set release created output + - name: Set release created flag + id: set-release-flag run: echo "release_created=true" >> $GITHUB_OUTPUT # NEW: Trigger binary builds after release is created From c31c1a2993d1022799e1aa72b52b6baf9b2f9cb7 Mon Sep 17 00:00:00 2001 From: sawradip Date: Sun, 21 Dec 2025 00:12:12 +0600 Subject: [PATCH 2/3] chore: bump version to v0.1.45 - Updated all SDK versions to 0.1.45 --- pyproject.toml | 4 ++-- runagent-go/version.go | 2 +- runagent-rust/runagent/Cargo.toml | 2 +- runagent-ts/package-lock.json | 4 ++-- runagent-ts/package.json | 2 +- runagent/__init__.py | 2 +- runagent/__version__.py | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f8d5fef..3a63060 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "hatchling.build" [project] name = "runagent" -version = "0.1.44" +version = "0.1.45" 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.44" +python_version = "0.1.45" warn_return_any = true warn_unused_configs = true disallow_untyped_defs = true diff --git a/runagent-go/version.go b/runagent-go/version.go index 9910857..e649d31 100644 --- a/runagent-go/version.go +++ b/runagent-go/version.go @@ -1,4 +1,4 @@ package runagent // Version represents the current version of the RunAgent Go SDK -const Version = "0.1.44" +const Version = "0.1.45" diff --git a/runagent-rust/runagent/Cargo.toml b/runagent-rust/runagent/Cargo.toml index fb5563f..b2432c3 100644 --- a/runagent-rust/runagent/Cargo.toml +++ b/runagent-rust/runagent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "runagent" -version = "0.1.44" +version = "0.1.45" 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 d2b7001..4d776cd 100644 --- a/runagent-ts/package-lock.json +++ b/runagent-ts/package-lock.json @@ -1,12 +1,12 @@ { "name": "runagent", - "version": "0.1.44", + "version": "0.1.45", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "runagent", - "version": "0.1.44", + "version": "0.1.45", "dependencies": { "better-sqlite3": "^12.2.0" }, diff --git a/runagent-ts/package.json b/runagent-ts/package.json index f05da2a..80a25ff 100644 --- a/runagent-ts/package.json +++ b/runagent-ts/package.json @@ -1,6 +1,6 @@ { "name": "runagent", - "version": "0.1.44", + "version": "0.1.45", "type": "module", "files": [ "dist" diff --git a/runagent/__init__.py b/runagent/__init__.py index 65452dc..cac0de8 100644 --- a/runagent/__init__.py +++ b/runagent/__init__.py @@ -5,7 +5,7 @@ built with frameworks like LangGraph, LangChain, and LlamaIndex. """ -__version__ = "0.1.44" +__version__ = "0.1.45" from .client import RunAgentClient diff --git a/runagent/__version__.py b/runagent/__version__.py index 8b9e48c..0ca817c 100644 --- a/runagent/__version__.py +++ b/runagent/__version__.py @@ -1 +1 @@ -__version__ = "0.1.44" +__version__ = "0.1.45" From 064adc19e8d3ae481b3d12bf8e1678024eb6df78 Mon Sep 17 00:00:00 2001 From: sawradip Date: Sun, 21 Dec 2025 00:12:12 +0600 Subject: [PATCH 3/3] docs: update changelog for v0.1.45 --- CHANGELOG.md | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e99c761..8d55aa7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,18 @@ # Changelog All notable changes to this project's latest version. -## [0.1.44] - 2025-12-20 +## [0.1.45] - 2025-12-20 -### Documentation +### Bug Fixes -- Update changelog for v0.1.43 +- Update output reference in create-release workflow -### Miscellaneous Tasks +### Documentation -- Remove version info from __init__.py -- Bump version to v0.1.44 +- Update changelog for v0.1.44 -### Refactor +### Miscellaneous Tasks -- Replace RunAgent with RunAgentSDK across CLI commands +- Bump version to v0.1.45