Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
15 changes: 7 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

<!-- generated by git-cliff -->
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion runagent-go/version.go
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion runagent-rust/runagent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions runagent-ts/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion runagent-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "runagent",
"version": "0.1.44",
"version": "0.1.45",
"type": "module",
"files": [
"dist"
Expand Down
2 changes: 1 addition & 1 deletion runagent/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
built with frameworks like LangGraph, LangChain, and LlamaIndex.
"""

__version__ = "0.1.44"
__version__ = "0.1.45"

from .client import RunAgentClient

Expand Down
2 changes: 1 addition & 1 deletion runagent/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.44"
__version__ = "0.1.45"