Skip to content

Commit b66e7a0

Browse files
ci(release): Release v0.0.13 (#239)
## Release v0.0.13 This PR prepares the release of version v0.0.13. ### Changelog # Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased ### ♻️ Refactoring - *(repo)* Improve logger and config usage ([#247](https://github.com/compozy/compozy/issues/247)) - *(repo)* Improve tests ([#251](https://github.com/compozy/compozy/issues/251)) - *(repo)* General improvements ([#253](https://github.com/compozy/compozy/issues/253)) ### 🎉 Features - *(repo)* Add hierarchical global tool access ([#237](https://github.com/compozy/compozy/issues/237)) - *(repo)* Integrate webhooks ([#241](https://github.com/compozy/compozy/issues/241)) - *(repo)* Add attachments support ([#248](https://github.com/compozy/compozy/issues/248)) ### 🐛 Bug Fixes - *(repo)* Agentic MCP tool calling ([#240](https://github.com/compozy/compozy/issues/240)) - *(repo)* Gracefully shutdown MCPs ([#243](https://github.com/compozy/compozy/issues/243)) - *(webhooks)* Fix workflow trigger ([#250](https://github.com/compozy/compozy/issues/250)) ### 📚 Documentation - *(repo)* Add Open with AI button - *(repo)* Add docs for webhooks and attachments ### 🔧 CI/CD - *(release)* Prepare release v0.0.13 --- *Made with ❤️ by the Compozy team • Generated by [git-cliff](https://git-cliff.org)* Signed-off-by: Pedro Nauck <pedronauck@gmail.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 95b1e8e commit b66e7a0

File tree

10 files changed

+21
-22
lines changed

10 files changed

+21
-22
lines changed

CHANGELOG.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
### ♻️ Refactoring
1010

11-
- *(llm)* Improve llm package ([#235](https://github.com/compozy/compozy/issues/235))
11+
- *(repo)* Improve logger and config usage ([#247](https://github.com/compozy/compozy/issues/247))
12+
- *(repo)* Improve tests ([#251](https://github.com/compozy/compozy/issues/251))
13+
- *(repo)* General improvements ([#253](https://github.com/compozy/compozy/issues/253))
1214

1315
### 🎉 Features
1416

15-
- *(task)* Add prompt property for basic task ([#236](https://github.com/compozy/compozy/issues/236))
17+
- *(repo)* Add hierarchical global tool access ([#237](https://github.com/compozy/compozy/issues/237))
18+
- *(repo)* Integrate webhooks ([#241](https://github.com/compozy/compozy/issues/241))
19+
- *(repo)* Add attachments support ([#248](https://github.com/compozy/compozy/issues/248))
1620

1721
### 🐛 Bug Fixes
1822

19-
- *(repo)* Auth bootstrap command ([#234](https://github.com/compozy/compozy/issues/234))
23+
- *(repo)* Agentic MCP tool calling ([#240](https://github.com/compozy/compozy/issues/240))
24+
- *(repo)* Gracefully shutdown MCPs ([#243](https://github.com/compozy/compozy/issues/243))
25+
- *(webhooks)* Fix workflow trigger ([#250](https://github.com/compozy/compozy/issues/250))
2026

2127
### 📚 Documentation
2228

23-
- *(repo)* Improve responsive
24-
- *(repo)* Add alpha badge
25-
- *(repo)* Add product hunt badge
26-
- *(repo)* Remove homebrew install for now
27-
- *(repo)* General adjustments
28-
29-
### 📦 Build System
30-
31-
- *(repo)* Update to go1.25.1
29+
- *(repo)* Add Open with AI button
30+
- *(repo)* Add docs for webhooks and attachments
3231

3332
---
34-
*Made with ❤️ by the Compozy team • Generated by [git-cliff](https://git-cliff.org)*
33+
*Made with ❤️ by the Compozy team • Generated by [git-cliff](https://git-cliff.org)*

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "compozy",
3-
"version": "1.1.0",
3+
"version": "0.0.13",
44
"description": "Compozy runtime examples and tools",
55
"private": true,
66
"type": "module",

tools/delete-file/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@compozy/tool-delete-file",
3-
"version": "0.0.12",
3+
"version": "0.0.13",
44
"private": false
55
}

tools/exec/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@compozy/tool-exec",
3-
"version": "0.0.12",
3+
"version": "0.0.13",
44
"private": false
55
}

tools/fetch/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@compozy/tool-fetch",
3-
"version": "0.0.12",
3+
"version": "0.0.13",
44
"private": false
55
}

tools/grep/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@compozy/tool-grep",
3-
"version": "0.0.12",
3+
"version": "0.0.13",
44
"private": false
55
}

tools/list-dir/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@compozy/tool-list-dir",
3-
"version": "0.0.12",
3+
"version": "0.0.13",
44
"private": false
55
}

tools/list-files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@compozy/tool-list-files",
3-
"version": "0.0.12",
3+
"version": "0.0.13",
44
"private": false
55
}

tools/read-file/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@compozy/tool-read-file",
3-
"version": "0.0.12",
3+
"version": "0.0.13",
44
"private": false
55
}

tools/write-file/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@compozy/tool-write-file",
3-
"version": "0.0.12",
3+
"version": "0.0.13",
44
"private": false
55
}

0 commit comments

Comments
 (0)