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
2 changes: 1 addition & 1 deletion agent_assembly/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import sys
from typing import TYPE_CHECKING, Any

__version__ = "0.0.1b4"
__version__ = "0.0.1b5"

_MODULE_CORE = "agent_assembly.core"
_MODULE_ADAPTERS = "agent_assembly.adapters"
Expand Down
26 changes: 26 additions & 0 deletions docs/compatibility/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,32 @@ Release notes for the Agent Assembly Python SDK. Versions follow [SemVer](https:
!!! info "0.x development"
The SDK is in active 0.x development; per-release notes are minimal. Track full changes via [the commits to `master`](https://github.com/ai-agent-assembly/python-sdk/commits/master) and the [GitHub releases](https://github.com/ai-agent-assembly/python-sdk/releases) feed.

## 0.0.1-beta.5

Beta iteration of the Python SDK on the `0.0.1` line. Headline of this release is
**five new framework adapters**, expanding governed-framework coverage:

- **LlamaIndex** — native adapter walkthrough (AAASM-3536)
- **Agno** — hooks `FunctionCall.execute`/`aexecute` (AAASM-3537)
- **Microsoft Agent Framework** — builtin adapter (AAASM-3538)
- **Smolagents** — wraps `Tool.__call__` (AAASM-3539)
- **Haystack** — framework adapter (AAASM-3540)

Other notable changes:

- Forward `agent_id` and the installed SDK package version through `connect`
(AAASM-3683).
- `GatewayClient` now elides `api_key` from `__repr__` and emitter logs — token
hygiene (AAASM-3642 / AAASM-3570).
- Supply-chain hardening: PEP 740 attestations on PyPI Trusted Publisher upload,
per-release CycloneDX SBOM, and a `pip-audit` advisory gate in CI (AAASM-3568).
- Release safety: `release-python.yml` is now operator-dispatch-only; the core
`repository_dispatch` auto-publish trigger was removed to stop duplicate-publish
collisions on every core release (AAASM-3503).
- Fixed the OpenAI Agents adapter to govern the current framework API (AAASM-3528).
- Docs: python-sdk is now the authoritative framework-compatibility source; mkdocs
search restored; GA4 + consent mode wired in.

## 0.0.1-beta.4

Beta iteration of the Python SDK on the `0.0.1` line. The bundled `aasm` runtime
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/agno.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Version pins (from `pyproject.toml`):
| Dependency | Version |
|---|---|
| `agno` | `>=2.0.0` |
| `agent-assembly` | `>=0.0.1b4` |
| `agent-assembly` | `>=0.0.1b5` (the release that ships the Agno adapter) |
| Python | `>=3.12` |

## How it works
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/haystack.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Version pins (from `pyproject.toml`):
| Dependency | Version |
|---|---|
| `haystack-ai` | `>=2.0.0,<3.0` |
| `agent-assembly` | `>=0.0.1b2` |
| `agent-assembly` | `>=0.0.1b5` (the release that ships the Haystack adapter) |
| Python | `>=3.12` |

## How it works
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/microsoft-agent-framework.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Version pins (from `pyproject.toml`):
| Dependency | Version |
|---|---|
| `agent-framework` (the `live` extra) | `>=1.9,<2` |
| `agent-assembly` | `>=0.0.1b2` |
| `agent-assembly` | `>=0.0.1b5` (the release that ships the Microsoft Agent Framework adapter) |
| Python | `>=3.12` |

The adapter's `get_supported_versions()` reports `>=1.0.0,<2.0` — governance attaches across the 1.x line.
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/smolagents.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Version pins (from `pyproject.toml`):
| Dependency | Version |
|---|---|
| `smolagents` | `>=1.0.0,<2.0.0` |
| `agent-assembly` | `>=0.0.1b2` |
| `agent-assembly` | `>=0.0.1b5` (the release that ships the Smolagents adapter) |
| Python | `>=3.12` |

## How it works
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "agent-assembly"
version = "0.0.1b4"
version = "0.0.1b5"
description = "Python SDK for AI Agent Assembly - A governance-native runtime for AI agents"
authors = [{ name = "Agent Assembly Team", email = "team@agent-assembly.dev" }]
requires-python = ">=3.12,<4.0"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.