The component and legacy ci-cd tags are mismatched
## Description The component and legacy ci-cd **tags** are **not aligned** in the `README.md` file. Indeed, the component tag is **up-to-date**, while the legacy ci-cd tag is **NOT**. ## Implementation ideas 1. This correction is needed to be made in the `bumpversion.sh` script, typically in line **[L30](https://gitlab.com/to-be-continuous/angular/-/blob/master/bumpversion.sh?ref_type=heads#L30)** at the **second regex (double quotes)**: ```shell sed -e "s/ref: *'$curVer'/ref: '$nextVer'/" -e "s/ref: *\"$curVer\"/ref: \"$nextVer\"/" -e "s/component: *\(.*\)@$curVer/component: \1@$nextVer/" README.md > README.md.next ``` 2. Update the legacy ci-cd tag with the current component's tag value. (in **[L31](https://gitlab.com/to-be-continuous/angular/-/blob/master/README.md?ref_type=heads&plain=1#L31)**). > **ℹ️ Note:** Verify the last value of the template tag before updating the legacy ci-cd tag.
epic