So you think you are ready to make a release, eh? Follow the steps below :)
- Web App (use chrome, firefox, and safari)
- Test group and zone volume control
- Check that each stream type can play music
- Test added app functionality
- Android App
- Test added App functionality
- Verify group and zone volumes
- Check that each stream type can play music
- Touchscreen display
- Verify touch turns display on
- Verify sources and volume sliders work with app
- Expanders
- Verify expanders are detected
- Test expander zone volume control
- Tester
- Update end-of-line tester with new release
- Verify all tests function
This project follows Semantic Versioning. Here are some examples of versions we've used before:
0.2.1
: this is a public general-availability bugfix release of the0.2
feature release.0.3.0-alpha.0
is the first alpha release of the0.3
feature release.
- Ensure the PR(s) with your features & fixes are merged into
main
. - Update the API by running
scripts/create_spec
script. - Create & merge a branch/PR off
main
to bump the version in the CHANGELOG and also usingpoetry version ${VERSION}
- Checkout main & create a detached HEAD:
git checkout main; git pull; git checkout --detach
- Build the webapp in
web
withnpm run build
and force add the changes withgit add -f web/dist; git commit -m "Build web app for release"
- Tag the changes so we can make a release on GitHub:
git tag -as ${VERSION} -m '' && git push origin ${VERSION}
- Make a release using the GitHub interface
- Use the AmpliPi updater to update to the release
- Test it again! If it needs changes, pull request your bugfixes against
main
and stamp a new release 😎