aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2013-10-08 09:48:29 -0400
committerBruce Momjian <bruce@momjian.us>2013-10-08 09:48:29 -0400
commita2883241e90d10d165f42aff02634093765fdd19 (patch)
tree5b2ba26ca5b440a26892ec81808c3ecf9ef37190 /src
parent1732ce4906c54937c5f36860e9f1493f693d5ba7 (diff)
downloadpostgresql-a2883241e90d10d165f42aff02634093765fdd19.tar.gz
postgresql-a2883241e90d10d165f42aff02634093765fdd19.zip
Update instructions on creating minor release notes.
Diffstat (limited to 'src')
-rw-r--r--src/tools/RELEASE_CHANGES18
1 files changed, 14 insertions, 4 deletions
diff --git a/src/tools/RELEASE_CHANGES b/src/tools/RELEASE_CHANGES
index 7ae9ade562c..b0b31d6c964 100644
--- a/src/tools/RELEASE_CHANGES
+++ b/src/tools/RELEASE_CHANGES
@@ -89,16 +89,26 @@ Starting a New Development Cycle
Creating Back-Branch Release Notes
==================================
-* Run src/tools/git_changelog to generate a list of relevant commits
+* Run src/tools/git_changelog to generate a list of relevant commits.
+ You can also run 'git log' in each branch. Be sure to use the --since
+ branch tag and not the release date, as commits could have been done
+ between branch stamping and the release date.
* On the git master branch, edit and create SGML markup for the most recent
branch in that branch's release-N.N.sgml file
* Copy this into older branches' release-N.N.sgml files, then remove
- items that do not apply based on commit logs for that branch (and add
- any that are needed)
+ items that do not apply based on commit logs for that branch.
+
+* Add any older branch commits not in the newest branch. This can be
+ accomplished by diff'ing the newest and older branch commit logs and
+ looking for lines that only appear in the older branch, e.g.:
+
+ diff commit-N.N.log commit-O.O.log | grep '^>'
+
+* Copy the appropriate release-N.N.sgml files into each back branch SGML
+ directory.
-* Copy the appropriate release-N.N.sgml files into each back branch
---------------------------------------------------------------------------