Skip to content

Commit d0810a8

Browse files
committed
chore: release v0.0.13
1 parent 74c3e91 commit d0810a8

4 files changed

Lines changed: 31 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,17 @@ jobs:
119119
run: |
120120
VERSION="${{ steps.get_version.outputs.version }}"
121121
122+
if [ -f "releases/${VERSION}.md" ]; then
123+
cp "releases/${VERSION}.md" release_notes.md
124+
echo "Using release notes from releases/${VERSION}.md"
125+
fi
126+
122127
# actions/checkout dereferences annotated tags to commits,
123128
# so re-fetch the tag to get the actual tag object
124-
git fetch origin "refs/tags/$VERSION:refs/tags/$VERSION" --force 2>/dev/null
129+
git fetch origin "refs/tags/$VERSION:refs/tags/$VERSION" --force 2>/dev/null || true
125130
126131
TAG_TYPE=$(git cat-file -t "refs/tags/$VERSION" 2>/dev/null)
127-
if [ "$TAG_TYPE" = "tag" ]; then
132+
if [ "$TAG_TYPE" = "tag" ] && [ ! -s release_notes.md ]; then
128133
# Extract full tag message (everything after the header block)
129134
git cat-file -p "refs/tags/$VERSION" | sed '1,/^$/d' > release_notes.md
130135
fi

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tinyclaw",
3-
"version": "0.0.12",
3+
"version": "0.0.13",
44
"description": "Multi-agent, multi-team, multi-channel 24/7 AI assistant",
55
"workspaces": [
66
"packages/*"

releases/v0.0.13.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
## TinyClaw v0.0.13
2+
3+
### Highlights
4+
- Agent configuration UI with skills, system prompt, memory, and heartbeat tabs. (74c3e91)
5+
- Agent provisioning refactor that consolidates workspace creation and uses symlinks for skills. (44ad272)
6+
- Hierarchical memory system for agents. (aaca334)
7+
- AGENTS.md is now passed as an in-memory system prompt to CLIs. (b66d6d8)
8+
9+
### Improvements
10+
- README updated with office.tinyagicompany.com as the primary TinyOffice access URL. (95ea27b)
11+
- Release workflow hardened to extract annotated tag notes reliably. (2e796fd, edf9fa7, 2752e94)
12+
13+
### Changelog (since v0.0.12)
14+
- 74c3e91 feat(agents): add agent configuration page with skills, prompts, and heartbeat (#207)
15+
- 44ad272 refactor: consolidate agent directory provisioning and use symlinks for skills (#211)
16+
- aaca334 Add hierarchical memory system for agents (#209)
17+
- b66d6d8 feat(core): pass AGENTS.md as in-memory system prompt to CLIs (#208)
18+
- 95ea27b docs: update README with office.tinyagicompany.com as primary TinyOffice access
19+
- 2e796fd chore(ci): clean up release notes debug output
20+
- edf9fa7 fix(ci): debug and re-fetch tag object for release notes extraction
21+
- 2752e94 fix(ci): use git cat-file for reliable tag message extraction

0 commit comments

Comments
 (0)