Skip to content
This repository has been archived by the owner on Jul 25, 2023. It is now read-only.

Latest commit

 

History

History
13 lines (12 loc) · 591 Bytes

RELEASING.md

File metadata and controls

13 lines (12 loc) · 591 Bytes

How to Release this Repo

  1. Determine the current release version with git tag -l. It should look something like vX.Y.Z. We'll call the current version $CV and the new version $NV.
  2. On master, run git log $CV.. to list all the changes since the last release.
  3. Edit CHANGES.md to include a summary of the changes.
  4. Mail the CL containing the CHANGES.md changes. When the CL is approved, submit it.
  5. Without submitting any other CLs: a. Switch to master. b. Tag the repo with the next version: git tag $NV. c. Push the tag: git push origin $NV.