Versions Compared

Key

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

...

Create a new Git tag for the released version by copying the tag for the final release candidate, as follows:




Code Block
git tag -s "release-${RELEASE_VERSION}" ${TAG}


For the GoLang SDK we we also need to push another release tag



Code Block
git tag -s "statefun-sdk-go/v${RELEASE_VERSION}" ${TAG}
Don't forget to push the tags via


Code Block
git push <remote> refs/tags/release-${RELEASE_VERSION}
git push <remote> refs/tags/statefun-sdk-go/v${RELEASE_VERSION}


Mark the version as released in JIRA

...