Please raise an issue for now. We don't have other official communication channels in place right now. If you really want to know more, you can contact the contributors through the standard Philips communication channel.
If you find a bug in the source code or a mistake in the documentation, you can help us by submitting an issue to our Github Repository. Even better you can submit a Pull Request with a fix.
We're using gitflow to release. In versioning we're using a prefix v
for
example: v0.2.1
.
You need setup git flow once on your local machine:
git flow init
git checkout main
git pull origin main
git checkout develop
git pull origin develop
git flow release start vx.x.x
This needs to be improved in the future, but for now:
Change version into new version in file / linenumber:
pom.xml
: line 13..github/workflows/build.yml
: line 113. (docker tags)
Commit changes:
git commit -m "Prepare for release vx.x.x"
git flow release finish vx.x.x -s
git push origin develop
git checkout main
git push origin main --tags