From b85ef9522e0de31113c6d20807eacd3933cba135 Mon Sep 17 00:00:00 2001 From: Ewerton Scaboro da Silva Date: Thu, 14 Mar 2024 22:28:01 -0700 Subject: [PATCH] Update LTS release example in readme to reflect current release process (#2598) * Update LTS release example in readme to reflect current release process * Update readme.md Co-authored-by: Raul Leclair * Moot commit to trigger build --------- Co-authored-by: Raul Leclair --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 158193527..3dbb5a064 100644 --- a/readme.md +++ b/readme.md @@ -290,10 +290,10 @@ Below is a hypothetical example of versioning and tagging for the C SDK. `minor` - The main branch is at version 1.8.2. - February 23, 2020: A new feature is released on main. The version bumps to 1.9.0, is tagged `1.9.0`, and the release is tagged `2020-02-23`. -- July 9, 2020: A new LTS release occurs. A new release branch `lts_07_2020` is created, the version remains 1.9.0, and the LTS release is tagged `LTS_07_2020_Ref01`. The main branch bumps to 1.10.0 and is tagged `1.10.0`. +- July 9, 2020: A new LTS release occurs. A new release is created, the version remains 1.9.0, and the LTS release is tagged `LTS_07_2020`. The main branch bumps to 1.10.0 and is tagged `1.10.0`. - August 2, 2020: A new feature is released on main: The main branch has already been bumped for an upcoming release so the version is unchanged. The release is tagged `2020-08-02`. -- September 28, 2020: A critical bug fix is released: The version on main bumps to 1.10.1, is tagged `1.10.1`, and the release is tagged `2020-09-28`. The critical bug fix is ported to the lts branch `lts_07_2020` (and any other existing LTS branch). The lts branch version bumps to 1.9.1, is tagged `1.9.1`, and the updated LTS release is tagged `LTS_07_2020_Ref02`. Any submodules that were part of the critical bug fix will be tagged with `LTS_07_2020_Ref02`. -- December 14, 2020: A new feature is released on main. The version bumps to 1.11.0, is tagged `1.11.0`, and the release is tagged `2020-12-14`. +- September 28, 2020: A critical bug fix is released: The version on main bumps to 1.10.1, is tagged `1.10.1`, and the release is tagged `2020-09-28`. The critical bug fix is ported to the lts release `LTS_07_2020` (and any other existing LTS branch) by creating a branch with name `lts_07_2020_ref02`, its version bumps to 1.9.1 and is tagged `1.9.1` and `LTS_07_2020_Ref02`. Any submodules that were part of the critical bug fix will be tagged with `LTS_07_2020_Ref02`. +- December 14, 2020: A new feature is released on main. The version bumps to 1.11.0, is tagged `1.11.0`, and the release is tagged as `2020-12-14`. ---