From 1dab69f1d0736c89e502ff8def3d811e7fde7262 Mon Sep 17 00:00:00 2001 From: Chisanan232 Date: Sat, 20 Jun 2026 12:53:03 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=94=96=20(release):=20Bump=20version?= =?UTF-8?q?=20to=200.0.1b4=20for=20next=20beta?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit De-stale the checked-in version from 0.0.2a1 (wrong vs the published 0.0.1b3 PyPI beta line) to the next beta 0.0.1b4, and sync uv.lock. The published version is authoritatively set by release-python.yml's sync-version action at dispatch time; this keeps master honest about the line being shipped. refs AAASM-3460 Co-Authored-By: Claude Opus 4.8 (1M context) --- agent_assembly/__init__.py | 2 +- pyproject.toml | 3 +-- uv.lock | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/agent_assembly/__init__.py b/agent_assembly/__init__.py index e54d93d4..93bc70dc 100644 --- a/agent_assembly/__init__.py +++ b/agent_assembly/__init__.py @@ -8,7 +8,7 @@ import sys from typing import TYPE_CHECKING, Any -__version__ = "0.0.2a1" +__version__ = "0.0.1b4" _MODULE_CORE = "agent_assembly.core" _MODULE_ADAPTERS = "agent_assembly.adapters" diff --git a/pyproject.toml b/pyproject.toml index 530ad46d..299870c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "agent-assembly" -version = "0.0.2a1" +version = "0.0.1b4" 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" @@ -121,4 +121,3 @@ packages = ["agent_assembly"] include = ["agent_assembly/"] packages = ["agent_assembly"] #artifacts = ["agent_assembly/py.typed"] - diff --git a/uv.lock b/uv.lock index 9d4bb9a4..2b575144 100644 --- a/uv.lock +++ b/uv.lock @@ -16,7 +16,7 @@ wheels = [ [[package]] name = "agent-assembly" -version = "0.0.2a1" +version = "0.0.1b4" source = { editable = "." } dependencies = [ { name = "grpcio" }, From e52f4f6d3885ba4d1689920c982d5363695c4f21 Mon Sep 17 00:00:00 2001 From: Chisanan232 Date: Sat, 20 Jun 2026 12:53:12 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=93=9D=20(docs):=20Add=200.0.1-beta.4?= =?UTF-8?q?=20release-notes=20entry?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add a release-notes entry for the next beta and point readers at the GitHub releases feed in addition to master commits. refs AAASM-3460 Co-Authored-By: Claude Opus 4.8 (1M context) --- docs/compatibility/release-notes.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/compatibility/release-notes.md b/docs/compatibility/release-notes.md index 8ba9f94b..a1509719 100644 --- a/docs/compatibility/release-notes.md +++ b/docs/compatibility/release-notes.md @@ -3,4 +3,10 @@ Release notes for the Agent Assembly Python SDK. Versions follow [SemVer](https://semver.org/) starting from `1.0.0`; pre-1.0 releases (the current `0.x.y` line) may include breaking changes between minor versions and are tracked in the [GitHub releases](https://github.com/ai-agent-assembly/python-sdk/releases) feed. !!! info "0.x development" - The SDK is in active 0.x development; no formal release notes are published yet. Track changes via [the commits to `master`](https://github.com/ai-agent-assembly/python-sdk/commits/master) until the first tagged release. + 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.4 + +Beta iteration of the Python SDK on the `0.0.1` line. The bundled `aasm` runtime +binary and compiled `aa-ffi-python` extension track the `agent-assembly` +`v0.0.1-beta.3` core release.