Versions Compared

Key

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

...

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:

Code Block
languagebash
titleCreate release branch
# Go to /streampipes-backend/src/main/resources/openapi.yaml in dev

# adapt the streampipes version 
openAPI:
  info:
    version: '0.70.0'


Checkout dev and change the aforementioned versions to the next release version (e.g., 0.67.0-SNAPSHOT)

...