Skip to content
Merged
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.0.0",
"packages/pytest-agentic-fabric": "0.1.0"
"packages/agentic-fabric": "1.1.0",
"packages/pytest-agentic-fabric": "0.2.0"
}
7 changes: 7 additions & 0 deletions packages/agentic-fabric/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

<!-- version list -->

## [1.1.0](https://github.com/jbcom/agentic-fabric/compare/agentic-fabric-v1.0.0...agentic-fabric-v1.1.0) (2026-06-27)


### Features

* bootstrap agentic fabric workspace ([#1](https://github.com/jbcom/agentic-fabric/issues/1)) ([2704e67](https://github.com/jbcom/agentic-fabric/commit/2704e6758a77661477c01678073a1b78ca1abcbc))

## v1.0.0 (2025-12-25)

### Initial Stable Release
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.0.0"
version = "1.1.0"
description = "Framework-agnostic agent fabric orchestration for CrewAI, LangGraph, Strands, local CLI runners, 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:
__version__ = "0.0.0"
__version__ = "1.1.0"

# Core exports - framework-agnostic functionality
from agentic_fabric.agentic_data import AgenticData
Expand Down
9 changes: 9 additions & 0 deletions packages/pytest-agentic-fabric/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Changelog

## [0.2.0](https://github.com/jbcom/agentic-fabric/compare/pytest-agentic-fabric-v0.1.0...pytest-agentic-fabric-v0.2.0) (2026-06-27)


### Features

* bootstrap agentic fabric workspace ([#1](https://github.com/jbcom/agentic-fabric/issues/1)) ([2704e67](https://github.com/jbcom/agentic-fabric/commit/2704e6758a77661477c01678073a1b78ca1abcbc))

## Changelog

All notable changes to this project are documented by release-please.
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.1.0"
version = "0.2.0"
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 @@ -26,4 +26,4 @@
try:
__version__ = version("pytest-agentic-fabric")
except PackageNotFoundError:
__version__ = "0.0.0"
__version__ = "0.2.0"