From 816bd3cf513b81bd2953d98cc3206ebcd95b11b9 Mon Sep 17 00:00:00 2001 From: hdamker-bot <175293635+hdamker-bot@users.noreply.github.com> Date: Mon, 23 Feb 2026 12:11:11 +0000 Subject: [PATCH 1/3] [bulk] Add release-plan.yaml (2026-02-23-001) --- release-plan.yaml | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 release-plan.yaml diff --git a/release-plan.yaml b/release-plan.yaml new file mode 100644 index 0000000..dc31748 --- /dev/null +++ b/release-plan.yaml @@ -0,0 +1,41 @@ +# CAMARA Release Plan +# This file declares release intentions for this repository. +# It replaces manual wiki tracking with automated tooling. +# +# Update this file; CI validates it; releases are generated from this plan. +# Docs: https://github.com/camaraproject/ReleaseManagement/tree/main/documentation + +repository: + # How this repository participates in CAMARA releases + # Options: independent (default) | meta-release + release_track: independent + # Uncomment and set when planning a meta-release participation: + # meta_release: Sync26 + + # Target CAMARA release tag. + # Initialized to the latest release; update when planning the next release. + # - New release cycle (increment first number, reset second to 1) + # - Progression in same cycle (increment second number) + target_release_tag: r1.1 + + # Release type being prepared (must be set before release can be triggered) + # Options: none | pre-release-alpha | pre-release-rc | public-release | maintenance-release + target_release_type: none + +# Dependencies on Commonalities and ICM releases +# Update per ReleaseManagement requirements for each release cycle +dependencies: + commonalities_release: r3.4 + identity_consent_management_release: r3.3 + +# APIs in this repository +# - api_name: kebab-case identifier (must be filename in code/API_definitions/) +# - target_api_status: draft (no file yet) | alpha | rc | public +apis: + - api_name: click-to-dial + target_api_version: 0.1.0 + target_api_status: alpha + main_contacts: + - YadingFang + - Wojiaozhenghao + - XunliYang From 264d58e53233e8f9e8258356f493c6443c25a3f1 Mon Sep 17 00:00:00 2001 From: Yading Fang <45770429+YadingFang@users.noreply.github.com> Date: Tue, 24 Feb 2026 10:24:15 +0800 Subject: [PATCH 2/3] Update release plan for version r1.2 and pre-release-rc Updated the target release tag and type for the next release cycle. Changed API version and status for 'click-to-dial'. --- release-plan.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/release-plan.yaml b/release-plan.yaml index dc31748..9007105 100644 --- a/release-plan.yaml +++ b/release-plan.yaml @@ -16,11 +16,11 @@ repository: # Initialized to the latest release; update when planning the next release. # - New release cycle (increment first number, reset second to 1) # - Progression in same cycle (increment second number) - target_release_tag: r1.1 + target_release_tag: r1.2 # Release type being prepared (must be set before release can be triggered) # Options: none | pre-release-alpha | pre-release-rc | public-release | maintenance-release - target_release_type: none + target_release_type: pre-release-rc # Dependencies on Commonalities and ICM releases # Update per ReleaseManagement requirements for each release cycle @@ -33,8 +33,8 @@ dependencies: # - target_api_status: draft (no file yet) | alpha | rc | public apis: - api_name: click-to-dial - target_api_version: 0.1.0 - target_api_status: alpha + target_api_version: 0.1.0-rc.1 + target_api_status: rc main_contacts: - YadingFang - Wojiaozhenghao From 09ee838b15601ad1a4e2bce530ce1b8fb0053ebb Mon Sep 17 00:00:00 2001 From: Yading Fang <45770429+YadingFang@users.noreply.github.com> Date: Tue, 24 Feb 2026 10:28:31 +0800 Subject: [PATCH 3/3] Fix release-plan api_version to semver --- release-plan.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-plan.yaml b/release-plan.yaml index 9007105..5ca531d 100644 --- a/release-plan.yaml +++ b/release-plan.yaml @@ -33,7 +33,7 @@ dependencies: # - target_api_status: draft (no file yet) | alpha | rc | public apis: - api_name: click-to-dial - target_api_version: 0.1.0-rc.1 + target_api_version: 0.1.0 target_api_status: rc main_contacts: - YadingFang