Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

All release artifacts released to the Apache release repo, will automatically be synced to Maven central.


Publish Docker images

TODO: Move Docker publish script to main repo


Merge release into master in all repos

...

Note

During the last release (0.67.0) there where some merge conflict when merging the new release tag into master.

The following link helped to resolve the problems: https://stackoverflow.com/questions/173919/is-there-a-theirs-version-of-git-merge-s-ours


Note

I also had similar problems during the 0.68.0 release and did the following:

Pull master & release branch

git checkout release/0.68.0

git merge master -s ours

git checkout master
git merge release/0.68.0


Update website and docs

Clone the incubator-streampipes-website project and checkout the dev branch.

...