Skip to content

Commit b74d6d8

Browse files
Release Python SDKs: bump a2ui-core to v0.1.1 and a2ui-agent-sdk to v0.4.0 (#1937)
1 parent 4d72dee commit b74d6d8

5 files changed

Lines changed: 44 additions & 3 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
## Unreleased
2+
3+
## 0.4.0
4+
5+
- Standardize Python namespace packages to PEP 420 (#1815). Note: Breaking change removing `a2ui.__version__` from the root `a2ui` namespace level; use `from a2ui.version import __version__`.
6+
- Update required `a2ui-core` dependency to `>=0.1.1,<0.2.0`.
7+
8+
## 0.3.0
9+
10+
- Split `a2ui_core` and `a2ui_agent` into separate packages.
11+
12+
## 0.2.4
13+
14+
## 0.2.3
15+
16+
## 0.2.2
17+
18+
## 0.2.1
19+
20+
## 0.2.0
21+
22+
## 0.1.2
23+
24+
## 0.1.1

agent_sdks/python/a2ui_agent/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ readme = "README.md"
2020
requires-python = ">=3.10"
2121
dependencies = [
2222
"a2a-sdk>=0.3.0,<0.4.0",
23-
"a2ui-core>=0.1.0",
23+
"a2ui-core>=0.1.1,<0.2.0",
2424
"antlr4-python3-runtime>=4.13.0,<4.14.0",
2525
"google-adk>=1.28.1",
2626
"google-genai>=1.27.0",

agent_sdks/python/a2ui_agent/src/a2ui/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
# Switch to VCS-based versioning which derives version
2222
# from Git tags automatically with the hatch-vcs plugin
2323
# when we start using Git tags.
24-
__version__ = "0.3.0"
24+
__version__ = "0.4.0"
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
## Unreleased
2+
3+
## 0.1.1
4+
5+
- Enable type checks across `a2ui_core` (#1816).
6+
- Fix `MessageProcessor.get_client_capabilities` exporting `None` into `inlineCatalogs` for programmatically created catalogs.
7+
- Optimize component validation with cached Pydantic `TypeAdapter` on `ComponentImplementation`.
8+
9+
## 0.1.0
10+
11+
- Initial standalone release of `a2ui_core` (split from `a2ui_agent`).
12+
13+
## 0.0.4
14+
15+
## 0.0.3
16+
17+
## 0.0.1

agent_sdks/python/a2ui_core/src/a2ui/core/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
# - Version format: major.minor.patch
1818
# - Update the version in this file before releasing
1919
#
20-
__version__ = "0.1.0"
20+
__version__ = "0.1.1"

0 commit comments

Comments
 (0)