You can copy the raw source of this document to an issue or pull request for the release to use as an interactive checklist, if desired.
Note: We use pip
instead of conda
here even on Conda installs, to ensure we always get the latest upstream versions of the build dependencies.
-
Close GitHub milestone and ensure all issues are resolved/moved
-
In a bash-like shell locally and on the Pi/server, set up the variables needed (otherwise, replace them manually)
# Full version number to release, e.g. '1.2.3b4' VERSION='VERSION_NUMBER' # Git branch to make the release from, e.g. 'main', 'master' or '1.x' MAIN_BRANCH='BRANCH_NAME' # Prepare-release branch name PREPARE_RELEASE_BRANCH=prepare-release-$VERSION # Release branch name, if a new major/minor release, e.g. '1.x' or '0.4.x' RELEASE_BRANCH=$MAIN_BRANCH # Set mode to 'client' (if on a Pi) or 'server' (if on the central VPS) MODE='MODE_NAME'
or, all in one line,
VERSION='VERSION_NUMBER'; MAIN_BRANCH='BRANCH_NAME'; PREPARE_RELEASE_BRANCH=prepare-release-$VERSION; RELEASE_BRANCH=$MAIN_BRANCH; MODE='MODE_NAME'
-
Update local repo
git reset --hard && git switch $MAIN_BRANCH && git pull upstream $MAIN_BRANCH
-
Clean local repo
git clean -xdi
-
Perform a quick local smoke-test of the final development version
python -b -X dev -m pip install -e . pylint src/brokkr python -I -bb -X dev -W error -m brokkr --version python -I -bb -X dev -W error -m brokkr monitor python -I -bb -X dev -W error -m brokkr --mode test start tail -n 10 "$(ls -t ~/brokkr/test/telemetry/telemetry* | head -n 1)"
-
Create a new branch for the release
git switch -c $PREPARE_RELEASE_BRANCH
-
Ensure docs and metadata are up to date and commit any changes
- Release Guide
- License
- Readme
- Contributing Guide
- MANIFEST.in
- setup.cfg (Python/dep version reqs, classifiers, other metadata)
- Roadmap
-
Update
CHANGELOG.md
with the latest changes -
Update
__version__
in__init__.py
(set release version, remove.dev0
)nano src/brokkr/__init__.py
-
Create release commit
git commit -m "Release Brokkr version $VERSION"
-
Push the prepare-release branch to your fork
git push -u origin $PREPARE_RELEASE_BRANCH
-
Open a pull request for the branch
-
On the Pi/server, pull the prepare-release branch
git reset --hard && git fetch --all && git switch $PREPARE_RELEASE_BRANCH
-
Clean repository of old artifacts
git clean -xdi
-
Create and activate a fresh virtual environment for testing
python -m venv test-env && source test-env/bin/activate
-
Install/update the packaging stack
python -m pip install --upgrade pip pip install --upgrade build setuptools wheel
-
Build the distribution packages
python -bb -X dev -W error -m build
-
Install from built wheel
python -b -X dev -m pip install dist/brokkr-$VERSION-py3-none-any.whl[all]
-
Check environment
pip check; python -I -bb -X dev -W error -m brokkr --version
-
Test package
python -I -bb -X dev -W error -m brokkr status python -I -bb -X dev -W error -m brokkr monitor python -I -bb -X dev -W error -m brokkr --mode test start ls -lh ~/brokkr/test/telemetry head -n 10 "$(ls -t ~/brokkr/test/telemetry/telemetry* | head -n 1)" tail -n 10 "$(ls -t ~/brokkr/test/telemetry/telemetry* | head -n 1)"
-
On the Pi/server(s), activate the production virtual environment
-
Disable and stop Brokkr service
sudo systemctl disable brokkr-hamma-default && sudo systemctl stop brokkr-hamma-default
-
Reinstall the package from the built wheel
python -b -X dev -m pip install dist/brokkr-$VERSION-py3-none-any.whl
-
Reinstall service
sudo /$PATH_TO_VENV/bin/python -I -bb -X dev -W error -m brokkr install-service -vvv --account $ACCOUNT
-
Restart services
sudo systemctl restart brokkr-hamma-default sindri-hamma-$MODE
-
Verify still running, no errors and functioning correctly after 60 seconds
systemctl status brokkr-hamma-default sindri-hamma-$MODE
-
Activate the appropriate venv/conda environment
-
Clean local repo
git clean -xdi
-
Update the packaging stack
python -m pip install --upgrade pip pip install --upgrade --upgrade-strategy eager build setuptools twine wheel
-
Build source distribution and wheel
python -bb -X dev -W error -m build
-
Check Pylint
pylint src/brokkr
-
Check distribution archives
twine check --strict dist/*
-
Check installation
python -b -X dev -m pip install dist/brokkr-$VERSION-py3-none-any.whl
-
Check environment
pip check; python -I -bb -X dev -W error -m brokkr --version
-
Check functionality
python -I -bb -X dev -W error -m brokkr monitor python -I -bb -X dev -W error -m brokkr --mode test start tail -n 10 "$(ls -t ~/brokkr/test/telemetry/telemetry* | head -n 1)"
-
Upload distribution packages to PyPI
twine upload dist/*
-
Create release tag
git tag -a v$VERSION -m "Brokkr version $VERSION"
-
Merge the prepare-release branch to
$MAIN_BRANCH
, or the pull requestgit switch $MAIN_BRANCH && git merge $PREPARE_RELEASE_BRANCH
-
If new major or minor version, create release branch and push
git switch -c $RELEASE_BRANCH && git push -u origin $RELEASE_BRANCH && git push upstream $RELEASE_BRANCH && git switch $MAIN_BRANCH
-
Update
__version__
in__init__.py
(increment to next, add.dev0
)nano src/brokkr/__init__.py
-
Create a
back to work
commit with the next anticipated version on the branchgit commit -m "Begin development of version $VERSION"
-
Reinstall the development version locally in editable mode
python -b -X dev -m pip install -e .
-
Push new release commits and tags to
$MAIN_BRANCH
git push upstream $MAIN_BRANCH --follow-tags
-
Create a GitHub release from the tag with the changelog contents
-
Open a GitHub milestone as needed for the next release
-
On the Pi/server, install the released version from PyPI
pip install brokkr
Or, pull the release branch, checkout the tag and editable-install
git fetch --all && git switch $RELEASE_BRANCH && git checkout v$VERSION && pip install -e .
-
Restart the service and verify working
sudo systemctl restart brokkr-hamma-default && sleep 10 && systemctl status brokkr-hamma-default
-
On the Pi/server, remove the clean test virtual environment
rm -rfd test-env
-
Delete the prepare-release branch locally and on the Pi/server
git branch -d $PREPARE_RELEASE_BRANCH
-
Delete the prepare-release branch on the remote
git push -d origin $PREPARE_RELEASE_BRANCH