Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions crates/agentai-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion crates/agentai-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agentai-macros"
version = "0.1.0"
version = "0.1.5"
edition = "2021"
authors = ["Adam Strojek <adam@strojek.info>"]
license = "MIT"
Expand Down
20 changes: 20 additions & 0 deletions crates/agentai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion crates/agentai/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agentai"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
authors = ["Adam Strojek <adam@strojek.info>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}\
Expand Down
Loading