diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index cd4c973..cb05d09 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -3,6 +3,9 @@ Release notes for the AD Build System (Software Factory) ## Releases: +* tag:1.2.2 10-Apr-2026 P. Nisperos (pnispero) + * Fix admin onboard post steps + * tag:1.2.1 7-Apr-2026 P. Nisperos (pnispero) * Fix pydm subsystem name bug diff --git a/bs_cli/adbs_cli/admin_commands.py b/bs_cli/adbs_cli/admin_commands.py index fb8562b..a69eefc 100644 --- a/bs_cli/adbs_cli/admin_commands.py +++ b/bs_cli/adbs_cli/admin_commands.py @@ -327,9 +327,10 @@ def onboard_repo(ctx, verbose: bool=False): ) click.echo(f"**** Post Steps ****\n \ -1. Please add repo to github app in {org_name}.\n \ -2. Update RELEASE_NOTES.md file with new tag then commit changes and push\n \ -3. Create new pull request and merge changes") +1. Update RELEASE_NOTES.md file with new tag\n \ +2. [Optional] Create CODEOWNERS file and add branch rules\n \ +3. Commit changes and push\n \ +4. Create new pull request and merge changes") @admin.command() @click.option("-c", "--component", required=False, help="Component Name", prompt=INPUT_PREFIX + "Specify component name") diff --git a/bs_cli/dist/adbs_cli-1.2.1.tar.gz b/bs_cli/dist/adbs_cli-1.2.1.tar.gz deleted file mode 100644 index 11dccc7..0000000 Binary files a/bs_cli/dist/adbs_cli-1.2.1.tar.gz and /dev/null differ diff --git a/bs_cli/dist/adbs_cli-1.2.1-py3-none-any.whl b/bs_cli/dist/adbs_cli-1.2.2-py3-none-any.whl similarity index 72% rename from bs_cli/dist/adbs_cli-1.2.1-py3-none-any.whl rename to bs_cli/dist/adbs_cli-1.2.2-py3-none-any.whl index ab3a811..0e2a3eb 100644 Binary files a/bs_cli/dist/adbs_cli-1.2.1-py3-none-any.whl and b/bs_cli/dist/adbs_cli-1.2.2-py3-none-any.whl differ diff --git a/bs_cli/dist/adbs_cli-1.2.2.tar.gz b/bs_cli/dist/adbs_cli-1.2.2.tar.gz new file mode 100644 index 0000000..ec6ecf7 Binary files /dev/null and b/bs_cli/dist/adbs_cli-1.2.2.tar.gz differ diff --git a/bs_cli/setup.py b/bs_cli/setup.py index bfac0c7..eede48c 100644 --- a/bs_cli/setup.py +++ b/bs_cli/setup.py @@ -2,7 +2,7 @@ # Avoided using pyproject.toml, becuase can't get an editable version installed (pip install -e .) setup( name='adbs_cli', - version='1.2.1', + version='1.2.2', description="Command line interface for the accelerator directorate build system (software factory)", author="Patrick Nisperos, Jerry Katzung, Claudio Bisegni", author_email="pnispero@slac.stanford.edu, katzung@slac.stanford.edu, bisegni@slac.stanford.edu",