Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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