Versions Compared

Key

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

...

The maven-release-plugin will ask you to provide the version number of the next development version (use the new minor version, not the suggested patch version). Afterwards, a new branch will be created and the version number in dev is increased to the next development version. All changes will be automatically pushed by the plugin.

In the dev branch, update the sp.version property in the maven archetypes (in the archetypes folder, all pom.xml templates in src/main/resources/archetype-resources)

Code Block
languagebash
titleUpdate sp.version in Maven archetypes
<properties>
<sp.version>0.66.0-SNAPSHOT</sp.version>
</properties>

Installer

Update the installer to the next development version in dev:

Code Block
languagebash
titleCreate release branch
# Go to incubator-streampipes/installer in dev

# checkout dev and update version
./upgrade_versions.sh NEW_SNAPSHOT_VERSION
git push origin


API Docs

Update the streampipes version within the API docs:

...