Versions Compared

Key

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

...

Code Block
titleClean up older versions
svn delete https://dist.apache.org/repos/dist/release/streampipes/0.91.0/ -m "Delete version 0.91.0"

Update Website version

Update the version of the website in the package.json and package-lock.json 

Code Block
titleUpdate Website package
# package.json
  "name": "apache-streampipes-website",
  "version": "0.90.0",

# package-lock.json
	"name": "apache-streampipes-website",
    "version": "0.90.0", 

Draft release on GitHub

  • Go to Releases Page and click Draft a new release
  • Choose tag of release (e.g. release/0.92.0)
  • Title: Release version (e.g. 0.92.0)
  • Copy release notes from file RELEASE_NOTES.md
  • Click Publish Release and mark as latest
  • IMPORTANT: Check that file RELEASE_NOTES.md in branch dev contain the lates release notes

...