summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClark Williams <williams@rt2.localdomain>2008-10-15 12:15:37 -0500
committerClark Williams <williams@rt2.localdomain>2008-10-15 12:15:37 -0500
commit9ebedb498b456e2b9db597e147411404d0d6b5e8 (patch)
tree5e0c67439de7fb16974cb9ae343aa30f943811b2
parent85a6358a68af882b9fcc094eb9b056278f69ffd8 (diff)
downloadmock-9ebedb498b456e2b9db597e147411404d0d6b5e8.tar.gz
mock-9ebedb498b456e2b9db597e147411404d0d6b5e8.tar.xz
mock-9ebedb498b456e2b9db597e147411404d0d6b5e8.zip
updated release instructions
-rw-r--r--docs/release-instructions.txt22
1 files changed, 12 insertions, 10 deletions
diff --git a/docs/release-instructions.txt b/docs/release-instructions.txt
index f33b881..4d9932c 100644
--- a/docs/release-instructions.txt
+++ b/docs/release-instructions.txt
@@ -14,18 +14,20 @@ In the git tree:
$ git checkout master
2) merge any changes from local branches
$ git merge mybranch
- 3) run 'autogen.sh' to update autoconf files
- 4) run 'configure' to generate Makefile and mock.spec
- 5) run 'make rpm' to generate binary RPM and propagate version changes
- 6) run 'make check' until it passes
- 7) check in any changes
- 8) remove ChangeLog and AUTHORS
- 9) run 'make dist' to generate ChangeLog and AUTHORS files
- 10) update version info in 'configure.ac' and commit it:
+ 3) update configure.ac with new version info
+ 4) update the %changelog section of mock.spec.in
+ 5) run 'autogen.sh' to update autoconf files
+ 6) run 'configure' to generate Makefile and mock.spec
+ 7) run 'make rpm' to generate binary RPM and propagate version changes
+ 8) run 'make check' until it passes
+ 9) check in any changes
+ 10) remove ChangeLog and AUTHORS
+ 11) run 'make dist' to generate ChangeLog and AUTHORS files
+ 12) update version info in 'configure.ac' and commit it:
$ git commit -m 'version bump' configure.ac
- 11) tag the git tree:
+ 13) tag the git tree:
$ git tag -u <your key> mock-<version>
- 12) push to main git repo (only from master branch):
+ 14) push to main git repo (only from master branch):
# substitute 'master' with branch name if on another branch
$ git push --tags origin master