Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
7 changes: 4 additions & 3 deletions bs_cli/adbs_cli/admin_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
Binary file removed bs_cli/dist/adbs_cli-1.2.1.tar.gz
Binary file not shown.
Binary file not shown.
Binary file added bs_cli/dist/adbs_cli-1.2.2.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion bs_cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down