Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Push a specific tag instead of all tags (easy to push tags by mistake with the latter)

...

  • Modify the version in 0.10.0 branch to remove "-SNAPSHOT" in gradle.properties, tests/kafkatest/__init__.py and kafka-merge-pr.py. Commit locally, but don't push to Apache.
  • Prepare an RC tag:
    • git tag -a 0.10.0.0-rc0 (this will tag the version change commit, get the rc part to match the actual rc number)
  • Move the branch head back, so future commits will still have "-SNAPSHOT"

    • git reset --hard HEAD~1
  • Push the tag to Apache (the following assumes that `apache` is the remote name for https://git-wip-us.apache.org/repos/asf/kafka.git):
    • git push --tagsapache 0.10.0.0-rc0

Prepare a workspace:

...