Skip to content

Commit 56bbcd6

Browse files
author
semantic-release
committed
chore(release): v0.5.1
1 parent a798262 commit 56bbcd6

3 files changed

Lines changed: 25 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
# CHANGELOG
22

33

4+
## v0.5.1 (2026-06-19)
5+
6+
### Bug Fixes
7+
8+
- **ci**: Remove unsupported --force flag from mike deploy commands
9+
([`a798262`](https://github.com/UnicoLab/agentomatic/commit/a79826287ad8ce5988346c3c36452adc90c25c99))
10+
11+
mike v2 does not support --force, causing 'unrecognized arguments' error and docs deployment failure
12+
during release. Replace with --ignore-remote-status for robustness across all workflow files: -
13+
release.yml (deploy-docs job) - manual-docs.yml (both deploy paths) - docs.yml (retry step)
14+
15+
- **ci**: Resolve lint, format, and type-check failures
16+
([`4316914`](https://github.com/UnicoLab/agentomatic/commit/4316914beafac25b67106ae807e50344b62a0224))
17+
18+
- Fix indentation bug in langgraph adapter where checkpointer access was outside the None-guard,
19+
causing mypy union-attr errors - Remove unused imports (asyncio, AsyncMock, RegisteredAgent) in
20+
tests - Sort import blocks in test_bugfixes_041.py - Apply ruff format to 6 files (memory_manager,
21+
router_factory, middleware/__init__, optimize/config, optimize/optimizer, tests) - Replace
22+
hardcoded version assertions with dynamic semver validation to prevent test failures on every
23+
version bump
24+
25+
426
## v0.5.0 (2026-06-19)
527

628
### Features

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "agentomatic"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
description = "Drop agents, not code — zero-code multi-agent API platform framework"
55
readme = "README.md"
66
license = {text = "MIT"}
@@ -84,6 +84,7 @@ Changelog = "https://github.com/UnicoLab/agentomatic/blob/main/CHANGELOG.md"
8484

8585

8686

87+
8788
[dependency-groups]
8889
dev = [
8990
"pytest>=8",

src/agentomatic/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
from __future__ import annotations
44

5-
__version__ = "0.5.0"
5+
__version__ = "0.5.1"

0 commit comments

Comments
 (0)