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 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 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"