diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-06-19 14:16:41 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-06-19 14:16:41 -0400 |
commit | 2ed81ebfaf2b4393b76fb36c121374da7ff563ec (patch) | |
tree | 90b3c0900abc8bd8fdd808de06469d182c65ecbf | |
parent | 63513b207df618b52cf0bdf42c1ec3f6e9378f40 (diff) | |
download | postgresql-2ed81ebfaf2b4393b76fb36c121374da7ff563ec.tar.gz postgresql-2ed81ebfaf2b4393b76fb36c121374da7ff563ec.zip |
Add REL9_1_STABLE to the set of branches tracked by git_changelog.
-rwxr-xr-x | src/tools/git_changelog | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/tools/git_changelog b/src/tools/git_changelog index af76f6d0ccb..fcf78f5202e 100755 --- a/src/tools/git_changelog +++ b/src/tools/git_changelog @@ -36,9 +36,11 @@ require IPC::Open2; # Adjust this list when the set of interesting branches changes. # (We could get this from "git branches", but not worth the trouble.) # NB: master must be first! -my @BRANCHES = qw(master REL9_0_STABLE REL8_4_STABLE REL8_3_STABLE - REL8_2_STABLE REL8_1_STABLE REL8_0_STABLE REL7_4_STABLE REL7_3_STABLE - REL7_2_STABLE REL7_1_STABLE REL7_0_PATCHES REL6_5_PATCHES REL6_4); +my @BRANCHES = qw(master + REL9_1_STABLE REL9_0_STABLE + REL8_4_STABLE REL8_3_STABLE REL8_2_STABLE REL8_1_STABLE REL8_0_STABLE + REL7_4_STABLE REL7_3_STABLE REL7_2_STABLE REL7_1_STABLE REL7_0_PATCHES + REL6_5_PATCHES REL6_4); # Might want to make this parameter user-settable. my $timestamp_slop = 600; |