From 48a98c13f443fed9970e77d0713c14eac065c9ba Mon Sep 17 00:00:00 2001 From: Adam Strojek Date: Sat, 19 Jul 2025 17:18:56 +0200 Subject: [PATCH 1/2] Update release-plz.toml --- release-plz.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-plz.toml b/release-plz.toml index 272bbde..3c48690 100644 --- a/release-plz.toml +++ b/release-plz.toml @@ -27,7 +27,7 @@ body = """ {% endif %} \ - {{ timestamp | date(format="%Y-%m-%d") }} {% for group, commits in commits | group_by(attribute="group") %} -### {{ group | upper_first }} +### {{ group | split(pat=". ") | last | upper_first }} {% for commit in commits %} {%- if commit.scope -%} - *({{commit.scope}})* {% if commit.breaking %}[**breaking**] {% endif %}\ From 6f93a78c7ddba47bf070acff9772df354d8248e1 Mon Sep 17 00:00:00 2001 From: Adam Strojek Date: Sat, 19 Jul 2025 17:19:19 +0200 Subject: [PATCH 2/2] Release `agentai` v0.1.5 --- crates/agentai-macros/CHANGELOG.md | 18 ++++++++++++++++++ crates/agentai-macros/Cargo.toml | 2 +- crates/agentai/CHANGELOG.md | 20 ++++++++++++++++++++ crates/agentai/Cargo.toml | 2 +- 4 files changed, 40 insertions(+), 2 deletions(-) create mode 100644 crates/agentai-macros/CHANGELOG.md create mode 100644 crates/agentai/CHANGELOG.md diff --git a/crates/agentai-macros/CHANGELOG.md b/crates/agentai-macros/CHANGELOG.md new file mode 100644 index 0000000..28ecab4 --- /dev/null +++ b/crates/agentai-macros/CHANGELOG.md @@ -0,0 +1,18 @@ +# 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.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.5](https://github.com/AdamStrojek/rust-agentai/compare/agentai-macros-v0.1.0...agentai-macros-v0.1.5) - 2025-07-19 + +### Miscellaneous +- Update lib.rs (by @AdamStrojek) - #27 +- Move crates to separate folders (by @AdamStrojek) - #27 + +### Contributors + +* @AdamStrojek diff --git a/crates/agentai-macros/Cargo.toml b/crates/agentai-macros/Cargo.toml index a5ef635..7bf5368 100644 --- a/crates/agentai-macros/Cargo.toml +++ b/crates/agentai-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agentai-macros" -version = "0.1.0" +version = "0.1.5" edition = "2021" authors = ["Adam Strojek "] license = "MIT" diff --git a/crates/agentai/CHANGELOG.md b/crates/agentai/CHANGELOG.md new file mode 100644 index 0000000..09b6d4f --- /dev/null +++ b/crates/agentai/CHANGELOG.md @@ -0,0 +1,20 @@ +# 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.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.5](https://github.com/AdamStrojek/rust-agentai/compare/agentai-v0.1.4...agentai-v0.1.5) - 2025-07-19 + +### New features +- ToolBox ([#18](https://github.com/AdamStrojek/rust-agentai/pull/18)) (by @AdamStrojek) - #18 + +### Miscellaneous +- Move crates to separate folders (by @AdamStrojek) - #27 + +### Contributors + +* @AdamStrojek diff --git a/crates/agentai/Cargo.toml b/crates/agentai/Cargo.toml index 13ed4ae..303c759 100644 --- a/crates/agentai/Cargo.toml +++ b/crates/agentai/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agentai" -version = "0.1.4" +version = "0.1.5" edition = "2021" authors = ["Adam Strojek "] license = "MIT"