From 235d87094fbcf56b8354aa226715c9174e25638b Mon Sep 17 00:00:00 2001 From: "Wei Sun (Jack)" Date: Tue, 17 Feb 2026 19:47:29 -0800 Subject: [PATCH 1/2] chore(release/candidate): release 0.4.1 (#86) --- .github/.release-please-manifest.json | 2 +- CHANGELOG.md | 11 +++++++++++ src/google/adk_community/version.py | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 2537c1f..218393f 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.4.0" + ".": "0.4.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f4dc752..904f09b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.4.1](https://github.com/google/adk-python-community/compare/v0.4.0...v0.4.1) (2026-02-18) + + +### Bug Fixes + +* **release:** configure git identity from RELEASE_PAT in finalize ([#81](https://github.com/google/adk-python-community/issues/81)) ([2b0c576](https://github.com/google/adk-python-community/commit/2b0c5768ef0a6e43af392e8ddd42433229507b4b)) +* **release:** dispatch release-please on release/candidate branch ([#84](https://github.com/google/adk-python-community/issues/84)) ([81c5371](https://github.com/google/adk-python-community/commit/81c5371c05b4a72959d935d0c51cee52e2e57218)) +* **release:** skip release-please when release/candidate is renamed ([#83](https://github.com/google/adk-python-community/issues/83)) ([f620dab](https://github.com/google/adk-python-community/commit/f620dabd527e1d7f84980c254ac1f4ffc244cf24)) +* **release:** use gh api for branch check in release-please ([#85](https://github.com/google/adk-python-community/issues/85)) ([14da7e9](https://github.com/google/adk-python-community/commit/14da7e9d7a1fc51c984e753d2e39dfb9ebfc61a8)) +* **release:** use last-release-sha instead of tags for release-please ([#78](https://github.com/google/adk-python-community/issues/78)) ([d2af60a](https://github.com/google/adk-python-community/commit/d2af60ab334d0bb44d27eaf0b88797f5fc5aa18f)) + ## [0.4.0](https://github.com/google/adk-python-community/compare/v0.3.1...v0.4.0) (2026-02-17) diff --git a/src/google/adk_community/version.py b/src/google/adk_community/version.py index ce97029..a85b861 100644 --- a/src/google/adk_community/version.py +++ b/src/google/adk_community/version.py @@ -13,4 +13,4 @@ # limitations under the License. # version: major.minor.patch -__version__ = "0.4.0" +__version__ = "0.4.1" From 7c6d38cfe78162ecb5981e23f983abf47f7886be Mon Sep 17 00:00:00 2001 From: Jacksunwei <1281348+Jacksunwei@users.noreply.github.com> Date: Wed, 18 Feb 2026 03:47:40 +0000 Subject: [PATCH 2/2] chore: update last-release-sha for next release --- .github/release-please-config.json | 57 ++++++++++++++++++++++++------ 1 file changed, 46 insertions(+), 11 deletions(-) diff --git a/.github/release-please-config.json b/.github/release-please-config.json index cf9ff09..543dbd2 100644 --- a/.github/release-please-config.json +++ b/.github/release-please-config.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", - "last-release-sha": "bb9c361069d71802b68e5f11284a373c5bb8829d", + "last-release-sha": "14da7e9d7a1fc51c984e753d2e39dfb9ebfc61a8", "packages": { ".": { "release-type": "python", @@ -9,16 +9,51 @@ "skip-github-release": true, "changelog-path": "CHANGELOG.md", "changelog-sections": [ - {"type": "feat", "section": "Features"}, - {"type": "fix", "section": "Bug Fixes"}, - {"type": "perf", "section": "Performance Improvements"}, - {"type": "refactor", "section": "Code Refactoring"}, - {"type": "docs", "section": "Documentation"}, - {"type": "test", "section": "Tests", "hidden": true}, - {"type": "build", "section": "Build System", "hidden": true}, - {"type": "ci", "section": "CI/CD", "hidden": true}, - {"type": "style", "section": "Styles", "hidden": true}, - {"type": "chore", "section": "Miscellaneous Chores", "hidden": true} + { + "type": "feat", + "section": "Features" + }, + { + "type": "fix", + "section": "Bug Fixes" + }, + { + "type": "perf", + "section": "Performance Improvements" + }, + { + "type": "refactor", + "section": "Code Refactoring" + }, + { + "type": "docs", + "section": "Documentation" + }, + { + "type": "test", + "section": "Tests", + "hidden": true + }, + { + "type": "build", + "section": "Build System", + "hidden": true + }, + { + "type": "ci", + "section": "CI/CD", + "hidden": true + }, + { + "type": "style", + "section": "Styles", + "hidden": true + }, + { + "type": "chore", + "section": "Miscellaneous Chores", + "hidden": true + } ] } }