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
42 changes: 1 addition & 41 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,52 +213,12 @@ jobs:
# 🚀 RunAgent v${{ steps.find-tags.outputs.version }}

**Universal AI Agent Platform - All SDKs synchronized at v${{ steps.find-tags.outputs.version }}**

## 📦 Installation

Choose your preferred language:

### Python
```bash
pip install runagent==${{ steps.find-tags.outputs.version }}
```

### JavaScript/TypeScript
```bash
npm install runagent@${{ steps.find-tags.outputs.version }}
```

### Rust
```toml
[dependencies]
runagent = "${{ steps.find-tags.outputs.version }}"
```

### Go
```bash
go get github.com/runagent-dev/runagent/runagent-go@${{ steps.find-tags.outputs.latest_tag }}
```


## 📋 Changes in this Release

${{ steps.changelog.outputs.changelog }}

## 🔗 Package Links

- 🐍 [PyPI Package](https://pypi.org/project/runagent/${{ steps.find-tags.outputs.version }}/) (Publishing...)
- 📦 [npm Package](https://www.npmjs.com/package/runagent/v/${{ steps.find-tags.outputs.version }}) (Publishing...)
- 🦀 [crates.io Package](https://crates.io/crates/runagent/${{ steps.find-tags.outputs.version }}) (Publishing...)
- 🐹 [Go Module](https://pkg.go.dev/github.com/runagent-dev/runagent/runagent-go@${{ steps.find-tags.outputs.latest_tag }}) ✅

## 📚 Documentation

- 📖 [Documentation](https://docs.run-agent.ai)
- 🚀 [Quick Start Guide](https://docs.run-agent.ai/get-started/quickstart)
- 💬 [Discord Community](https://discord.gg/runagent)

---

**Note**: Individual SDK status will be updated below as packages are published.
draft: false
prerelease: false
generate_release_notes: false
Expand Down
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# Changelog
All notable changes to this project's latest version.

## [0.1.16] - 2025-07-29
## [0.1.17] - 2025-07-29

### Features

- Chengelog gen working

### Miscellaneous Tasks

- Bump version to v0.1.16
- Bump version to v0.1.17

<!-- generated by git-cliff -->
6 changes: 3 additions & 3 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.16"
version = "0.1.17"
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.16"
python_version = "0.1.17"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
Expand Down Expand Up @@ -159,7 +159,7 @@ fail_under = 80

[tool.ruff]
line-length = 88
target-version = "0.1.16"
target-version = "0.1.17"
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
Expand Down
3 changes: 2 additions & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@ git commit -m "chore: bump version to v$VERSION
git tag -a "v$VERSION" -m "Release v$VERSION
RunAgent Universal Release v$VERSION"

echo "✅ Tag v$VERSION created successfully!"
git push --tag
echo "✅ Tag v$VERSION created and pushed successfully!"

generate_changelog

Expand Down
2 changes: 1 addition & 1 deletion runagent-go/runagent/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.16"
const Version = "0.1.17"
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.16"
version = "0.1.17"
edition = "2021"
description = "RunAgent SDK for Rust - Deploy and manage AI agents easily"
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.16",
"version": "0.1.17",
"type": "module",
"files": [
"dist"
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.16"
__version__ = "0.1.17"