Skip to content

Commit 332cbcd

Browse files
authored
Merge branch 'main' into feature/entity-sharing-full-mcp
2 parents 47d754b + 034de13 commit 332cbcd

6 files changed

Lines changed: 37 additions & 10 deletions

File tree

.github/workflows/release-github.yaml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,15 @@ jobs:
115115
if: steps.release.outputs.released == 'true'
116116
with:
117117
github_token: ${{ secrets.CI_PUSH_TOKEN }}
118-
tag: ${{ steps.release.outputs.tag }}
118+
tag: ${{ steps.release.outputs.tag }}
119+
120+
- name: Upload install.sh to GitHub release assets
121+
if: steps.release.outputs.released == 'true'
122+
env:
123+
GH_TOKEN: ${{ secrets.CI_PUSH_TOKEN }}
124+
run: |
125+
sed 's/^SCRIPT_VERSION="main"/SCRIPT_VERSION="${{ steps.release.outputs.tag }}"/' \
126+
platform-integrations/install.sh > /tmp/install.sh
127+
gh release upload ${{ steps.release.outputs.tag }} \
128+
/tmp/install.sh#install.sh \
129+
--clobber

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
<!-- version list -->
44

5+
## v1.0.9 (2026-04-17)
6+
7+
### Bug Fixes
8+
9+
- Publish install.sh as a versioned release artifact
10+
([#195](https://github.com/AgentToolkit/altk-evolve/pull/195),
11+
[`0b055da`](https://github.com/AgentToolkit/altk-evolve/commit/0b055da765c03fa51348defb7630643f4a48c0f1))
12+
13+
### Features
14+
15+
- **bob**: Add save-trajectory skill to Bob evolve-lite
16+
([#184](https://github.com/AgentToolkit/altk-evolve/pull/184),
17+
[`9ca94e5`](https://github.com/AgentToolkit/altk-evolve/commit/9ca94e5ced9d0ebca03552703e3a7fe2417aae5a))
18+
19+
520
## v1.0.8 (2026-04-09)
621

722

altk_evolve/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.8"
1+
__version__ = "1.0.9"

platform-integrations/install.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
# curl -fsSL https://raw.githubusercontent.com/AgentToolkit/altk-evolve/main/platform-integrations/install.sh | bash
1212
# curl -fsSL https://raw.githubusercontent.com/AgentToolkit/altk-evolve/main/platform-integrations/install.sh | bash -s -- install --platform bob
1313
#
14-
# Pinned version (SCRIPT_VERSION is substituted by the release process, so the
15-
# script fetched from a tag already knows its own version — no env var needed):
14+
# Pinned version:
1615
# curl -fsSL https://raw.githubusercontent.com/AgentToolkit/altk-evolve/v1.2.0/platform-integrations/install.sh | bash
1716

1817
set -euo pipefail
@@ -21,9 +20,11 @@ set -euo pipefail
2120
EVOLVE_REPO="${EVOLVE_REPO:-AgentToolkit/altk-evolve}"
2221
EVOLVE_DEBUG="${EVOLVE_DEBUG:-0}"
2322

24-
# Default to "main" so the installer always pulls the latest source.
25-
# Callers can still pin a specific tag: EVOLVE_VERSION=v1.0.6 bash install.sh ...
26-
SCRIPT_VERSION="v1.0.8"
23+
# SCRIPT_VERSION refers to a branch or a version tag. This value is substituted
24+
# during the release process, so that a script always knows it's own version,
25+
# and downloads the correct artifact bundle.
26+
# Callers can manually override: EVOLVE_VERSION=v1.0.6 bash install.sh ...
27+
SCRIPT_VERSION="main"
2728
EVOLVE_VERSION="${EVOLVE_VERSION:-${SCRIPT_VERSION}}"
2829

2930
# ─── Colours ──────────────────────────────────────────────────────────────────

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "altk-evolve"
3-
version = "1.0.8"
3+
version = "1.0.9"
44
description = "Add your description here"
55
readme = "README.md"
66
requires-python = ">=3.12"
@@ -116,8 +116,8 @@ build_command = '''
116116
perl -i -pe "s|\]\(([A-Z_]*\.md)\)|](https://github.com/AgentToolkit/altk-evolve/blob/v$NEW_VERSION/\$1)|g" README.md
117117
perl -i -pe "s|\]\(docs/([^)]*)\)|](https://github.com/AgentToolkit/altk-evolve/blob/v$NEW_VERSION/docs/\$1)|g" README.md
118118
sed -i 's/^SCRIPT_VERSION="main"/SCRIPT_VERSION="v'"$NEW_VERSION"'"/' platform-integrations/install.sh
119-
git add platform-integrations/install.sh
120119
uv build
120+
git checkout platform-integrations/install.sh
121121
mv README.md.bak README.md
122122
'''
123123
tag_format = "v{version}"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)