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
94 changes: 27 additions & 67 deletions .github/tag_and_release/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,76 +1,36 @@
### 🎉 New feature
> **Pre-release dry-run.** Not for production use. Continues the
> cross-repo verification series started by v0.0.1-alpha.1 (2026-05-27)
> against the release CD pipeline. The next planned tag is v0.0.1 GA
> once all known release-infra gaps close.

1. Newborn of something project.
```shell
>>> something-cli --help
usage: something-cli [-h] [--host HOST] [--port PORT] [--log-level {debug,info,warning,error,critical}] [--reload] [--env ENV_FILE] [--token TOKEN]
[--transport {sse,http-streaming}]

Run the something I don\'t know what it is FastAPI server

options:
-h, --help show this help message and exit
--host HOST Host to bind the server to
--port PORT Port to bind the server to
--log-level {debug,info,warning,error,critical}
Logging level
--reload Enable auto-reload for development
--env ENV_FILE Path to the .env file for environment variables
--token TOKEN ClickUp API token (overrides token from .env file if provided)
--transport {sse,http-streaming}
Transport protocol to use for MCP (sse or http-streaming)
```
### 🔧 Release-infra fixes since v0.0.1-alpha.1

This bump verifies the workflow-trigger fix from AAASM-2053:

### 🔨 Breaking changes
- `.github/workflows/release.yml`, `release-validate.yml`, `type-check.yml`
had `<your_base_branch>` / `slack_mcp` placeholders that prevented
any of the workflows from firing on master pushes / PRs / tag pushes.
Fixed by [PR #66](https://github.com/AI-agent-assembly/python-sdk/pull/66).
- The release-validate pipeline's docs-build cascade was failing for
python-sdk (which uses MkDocs, not Docusaurus). Fixed upstream in
[Chisanan232/GitHub-Action_Reusable_Workflows-Python#169](https://github.com/Chisanan232/GitHub-Action_Reusable_Workflows-Python/pull/169)
+ the `artifacts.docs: skip` knob in this repo's `intent.yaml`.

1. Something breaking changes ...
### 🔍 What this release exercises (release-infra observation)

The release-validate workflow's full cascade should now complete
cleanly. PyPI publish + sibling-repo cross-CD coordination are still
gated on the alpha-1 follow-up findings (AAASM-1253).

### 🪲 Bug Fix
### Install

#### 🙋‍♂️ For production
```bash
pip install --pre agent-assembly==0.0.1a2
```

1. 💣 Critical bugs:
### Refs

1. A critical issue ([PR#111])

2. 🦠 Major bugs:

1. A major issue ([PR#112])

3. 🐛 Mirror bugs:

1. A minor issue ([PR#113])


#### 👨‍💻 For development

1. Some document changes.


### ♻️ Refactor

1. Some refactoring.


### 🍀 Improvement

1. Improve something. ([PR#481])


### 📑 Docs

1. Some changes of documentation..


### 🤖 Upgrade dependencies

1. Upgrade the Python dependencies.
2. Upgrade pre-commit dependencies.
3. Upgrade the CI reusable workflows.


### 🚮Deprecate

1. Something deprecated.
- Story `AAASM-2104` — pyproject bump
- Story `AAASM-1234` — F118 release-trigger
- Epic `AAASM-1199` — Release & Distribution Pipeline
- Sibling tag this aligns with: `agent-assembly v0.0.1-alpha.2`, `node-sdk v0.0.1-alpha.2`, `go-sdk v0.0.1-alpha.2`
2 changes: 1 addition & 1 deletion .github/tag_and_release/release-title.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.0.0 - Sample release note title 🍻
v0.0.1-alpha.2 — pre-release dry-run continuation
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.1a1"
__version__ = "0.0.1a2"

# AAASM-1696: top-level exports are resolved lazily so that lightweight
# submodules (e.g. `agent_assembly.runtime`, which is stdlib-only) can be
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.1a1"
version = "0.0.1a2"
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.

Loading