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
Change documentation if wanted. Versions will be changed right after the release on develop
Commit changes:
git commit -m "Prepare for release vx.x.x"
git flow release finish vx.x.x
git push origin develop
git checkout main
git push origin main --tags
This needs to be improved in the future, but for now:
Change version into new version in file / linenumber:
build.gradle
: line 68.build.gradle
: line 81.
Commit these changes to develop
:
git commit -m "Prepare for next release"