Versions Compared

Key

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

...

Code Block
languagebash
titleCreate release branch
# Create a release branch by replacing VERSION with the intended release version

mvn release:branch -DbranchName=rel/VERSION -DautoVersionSubmodules=true

# In dev, update the streampipes.version property and the parent version to the next development version, e.g.:

<parent>
        <groupId>org.apache.streampipes</groupId>
        <artifactId>streampipes-parent</artifactId>
        <version>0.67.0-SNAPSHOT</version>
</parent>

<streampipes.version>0.67.0-SNAPSHOT</streampipes.version>

# Commit and push all changes to dev

incubator-streampipes-installer

Create a release branch from dev:

Code Block
languagebash
titleCreate release branch
# Create a release branch from dev

git branch rel/VERSION 
#e.g., git branch rel/0.66.0

# checkout and push the release branch

In the release branch, change the version to the current SNAPSHOT version of the release:

  • in cli/tmpl_env: change SP_BACKEND_VERSION and SP_PE_VERSION to the proper version (e.g., 0.66.0-SNAPSHOT)
  • in helm-chart/values.yaml: change the streampipes/version property to the proper version
  • in installer/templates/.env: Change the SP_VERSION property to the proper version

Prepare test setup
Anchor
prepare-test-setup
prepare-test-setup
 (Release Manager)

...