mirror of
https://github.com/coredns/coredns.git
synced 2025-11-02 02:03:13 -05:00
* Import auth providers for K8s * Vendor updates for K8s auth providers * Remove Azure since it is not compiling * Update vendor to remove Azure dependencies
591 B
591 B
How to Release this Repo
- Determine the current release version with
git tag -l. It should look something likevX.Y.Z. We'll call the current version$CVand the new version$NV. - On master, run
git log $CV..to list all the changes since the last release. - Edit
CHANGES.mdto include a summary of the changes. - Mail the CL containing the
CHANGES.mdchanges. When the CL is approved, submit it. - 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.