From 757a3a62ab95c9dc2455c82127bc7bb53b894a7d Mon Sep 17 00:00:00 2001 From: sawradip Date: Wed, 30 Jul 2025 00:45:43 +0600 Subject: [PATCH 1/3] chore: bump version to v0.1.17 - Updated all SDK versions to 0.1.17 - Generated changelog with git-cliff --- .github/workflows/create-release.yml | 42 +--------------------------- pyproject.toml | 6 ++-- release.sh | 1 + runagent-go/runagent/version.go | 2 +- runagent-rust/runagent/Cargo.toml | 2 +- runagent-ts/package-lock.json | 4 +-- runagent-ts/package.json | 2 +- runagent/__version__.py | 2 +- 8 files changed, 11 insertions(+), 50 deletions(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 4181d0a..dcf2b3d 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 88f0563..f6c687c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" @@ -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 @@ -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 diff --git a/release.sh b/release.sh index cbdbd35..e5a5270 100644 --- a/release.sh +++ b/release.sh @@ -443,6 +443,7 @@ git commit -m "chore: bump version to v$VERSION git tag -a "v$VERSION" -m "Release v$VERSION RunAgent Universal Release v$VERSION" +git push --tag echo "✅ Tag v$VERSION created successfully!" generate_changelog diff --git a/runagent-go/runagent/version.go b/runagent-go/runagent/version.go index 3667219..9105e3d 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.16" +const Version = "0.1.17" diff --git a/runagent-rust/runagent/Cargo.toml b/runagent-rust/runagent/Cargo.toml index d29b83e..9d52188 100644 --- a/runagent-rust/runagent/Cargo.toml +++ b/runagent-rust/runagent/Cargo.toml @@ -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" diff --git a/runagent-ts/package-lock.json b/runagent-ts/package-lock.json index ce67591..57fdb89 100644 --- a/runagent-ts/package-lock.json +++ b/runagent-ts/package-lock.json @@ -1,12 +1,12 @@ { "name": "runagent", - "version": "0.1.16", + "version": "0.1.17", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "runagent", - "version": "0.1.16", + "version": "0.1.17", "dependencies": { "better-sqlite3": "^12.2.0" }, diff --git a/runagent-ts/package.json b/runagent-ts/package.json index 1ec50e2..7871336 100644 --- a/runagent-ts/package.json +++ b/runagent-ts/package.json @@ -1,6 +1,6 @@ { "name": "runagent", - "version": "0.1.16", + "version": "0.1.17", "type": "module", "files": [ "dist" diff --git a/runagent/__version__.py b/runagent/__version__.py index 970659c..86205cb 100644 --- a/runagent/__version__.py +++ b/runagent/__version__.py @@ -1 +1 @@ -__version__ = "0.1.16" +__version__ = "0.1.17" From 0dd3a6623033e51074b6ffad9c8ae949d9636831 Mon Sep 17 00:00:00 2001 From: sawradip Date: Wed, 30 Jul 2025 00:47:03 +0600 Subject: [PATCH 2/3] feat: realease action workflow fixed --- CHANGELOG.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b00a90c..08febc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 From ab5197613c4ef03154e658d85f1d96bee2b345e3 Mon Sep 17 00:00:00 2001 From: sawradip Date: Wed, 30 Jul 2025 00:47:15 +0600 Subject: [PATCH 3/3] fix: fixed relase yml --- release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.sh b/release.sh index e5a5270..e23a4b3 100644 --- a/release.sh +++ b/release.sh @@ -444,7 +444,7 @@ git tag -a "v$VERSION" -m "Release v$VERSION RunAgent Universal Release v$VERSION" git push --tag -echo "✅ Tag v$VERSION created successfully!" +echo "✅ Tag v$VERSION created and pushed successfully!" generate_changelog