diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 43efeeb818..895bf0e35e 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.0.0-beta.1" + ".": "2.0.0" } diff --git a/.github/release-please-config.json b/.github/release-please-config.json index 1467c7a075..865e5230e0 100644 --- a/.github/release-please-config.json +++ b/.github/release-please-config.json @@ -56,5 +56,5 @@ ] } }, - "last-release-sha": "81a15a5229564c1448f79c75c0fc86218aebc1a2" + "last-release-sha": "e6537decc910d64a31e6646064e8290b02af4511" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 08799f7a13..e2c89ff486 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [2.0.0](https://github.com/google/adk-python/compare/v2.0.0b1...v2.0.0) (2026-05-19) + +### ADK 2.0 General Availability + +This release introduces v2.0.0 General Availability (GA) of the Google Agent Development Kit (ADK), establishing production-grade foundations for multi-agent workflows and advanced dynamic agent collaboration. + +### Core Architecture Highlights + +#### Multi-Agent Workflow Engine +* **Flexible Execution Graphs:** Establishes a model-agnostic engine for orchestrating non-linear, conditional, and cyclical agent execution patterns. +* **Intelligent Task Delegation:** Introduces modular workflow abstractions enabling parallel sub-agent workers, nested hierarchical team structures, and resilient dynamic scheduling across complex task execution steps. + +#### Dynamic Agent Collaboration +* **Native Inter-Agent Routing:** Provides seamless orchestration for inter-agent messaging, control state handoffs, and context variable propagation across collaborative multi-agent flows. + ## [1.34.0](https://github.com/google/adk-python/compare/v1.33.0...v1.34.0) (2026-05-18) diff --git a/src/google/adk/version.py b/src/google/adk/version.py index 2dce2944f8..69d9a22b21 100644 --- a/src/google/adk/version.py +++ b/src/google/adk/version.py @@ -13,4 +13,4 @@ # limitations under the License. # version: major.minor.patch -__version__ = "2.0.0b1" +__version__ = "2.0.0"