Skip to content
Open
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
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"packages/agentic-fabric": "1.4.0",
"packages/pytest-agentic-fabric": "0.3.3"
"packages/agentic-fabric": "1.4.1",
"packages/pytest-agentic-fabric": "0.3.4"
}
8 changes: 8 additions & 0 deletions packages/agentic-fabric/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

<!-- version list -->

## [1.4.1](https://github.com/jbcom/agentic-fabric/compare/agentic-fabric-v1.4.0...agentic-fabric-v1.4.1) (2026-08-24)


### Bug Fixes

* move documentation to agentic.coach ([aafe2cf](https://github.com/jbcom/agentic-fabric/commit/aafe2cf7c21d22e79fc80611f9d7c0a1e64eba04))
* move documentation to agentic.coach ([bfb5cb6](https://github.com/jbcom/agentic-fabric/commit/bfb5cb6d509f54460e0acc2ef3a904178bd89512))

## [1.4.0](https://github.com/jbcom/agentic-fabric/compare/agentic-fabric-v1.3.0...agentic-fabric-v1.4.0) (2026-08-24)


Expand Down
2 changes: 1 addition & 1 deletion packages/agentic-fabric/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "agentic-fabric"
version = "1.4.0"
version = "1.4.1"
description = "Framework-agnostic agent orchestration with A2A, MCP, runtime adapters, and vendor-fabric tools"
requires-python = ">=3.11"
license = { text = "MIT" }
Expand Down
2 changes: 1 addition & 1 deletion packages/agentic-fabric/src/agentic_fabric/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async def execute_workflow(self, task):
try:
__version__ = version("agentic-fabric")
except PackageNotFoundError: # pragma: no cover - only hit when not installed
__version__ = "1.4.0"
__version__ = "1.4.1"

# Core exports - framework-agnostic functionality
from agentic_fabric.a2a import (
Expand Down
8 changes: 8 additions & 0 deletions packages/pytest-agentic-fabric/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.3.4](https://github.com/jbcom/agentic-fabric/compare/pytest-agentic-fabric-v0.3.3...pytest-agentic-fabric-v0.3.4) (2026-08-24)


### Bug Fixes

* move documentation to agentic.coach ([aafe2cf](https://github.com/jbcom/agentic-fabric/commit/aafe2cf7c21d22e79fc80611f9d7c0a1e64eba04))
* move documentation to agentic.coach ([bfb5cb6](https://github.com/jbcom/agentic-fabric/commit/bfb5cb6d509f54460e0acc2ef3a904178bd89512))

## [0.3.3](https://github.com/jbcom/agentic-fabric/compare/pytest-agentic-fabric-v0.3.2...pytest-agentic-fabric-v0.3.3) (2026-08-24)


Expand Down
2 changes: 1 addition & 1 deletion packages/pytest-agentic-fabric/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "pytest-agentic-fabric"
version = "0.3.3"
version = "0.3.4"
description = "Pytest fixtures for projects built on agentic-fabric"
requires-python = ">=3.11"
license = { text = "MIT" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@
try:
__version__ = version("pytest-agentic-fabric")
except PackageNotFoundError: # pragma: no cover - only hit when not installed
__version__ = "0.3.3"
__version__ = "0.3.4"
Loading