summaryrefslogtreecommitdiff
path: root/build-aux/announce-gen
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-10-01 10:09:30 +0200
committerJim Meyering <meyering@redhat.com>2009-10-01 10:09:30 +0200
commit1c233a6b61e3aca04d0edd02ad31a276d35bfcf4 (patch)
tree3a0176c44d91fa746ad3093edf4751d9e7aec18a /build-aux/announce-gen
parent031df21c6364b13eda68722c44d7d08e9ce7db39 (diff)
downloadgnulib-1c233a6b61e3aca04d0edd02ad31a276d35bfcf4.tar.gz
maint.mk: requiring "make major" was annoying, for a "minor" release.
What is intended is "stable", to contrast with alpha and beta, so require "make stable", not "make major". * build-aux/announce-gen (%valid_release_types): s/major/stable/. (get_tool_versions): Likewise. * top/maint.mk (ALL_RECURSIVE_TARGETS): s/major/stable/
Diffstat (limited to 'build-aux/announce-gen')
-rwxr-xr-xbuild-aux/announce-gen4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/announce-gen b/build-aux/announce-gen
index d4e289a9e3..972b881463 100755
--- a/build-aux/announce-gen
+++ b/build-aux/announce-gen
@@ -33,7 +33,7 @@ use POSIX qw(strftime);
(my $ME = $0) =~ s|.*/||;
-my %valid_release_types = map {$_ => 1} qw (alpha beta major);
+my %valid_release_types = map {$_ => 1} qw (alpha beta stable);
my @archive_suffixes = ('tar.gz', 'tar.bz2', 'tar.lzma', 'tar.xz');
sub usage ($)
@@ -468,7 +468,7 @@ EOF
print_news_deltas ($_, $prev_version, $curr_version)
foreach @news_file;
- $release_type eq 'major'
+ $release_type eq 'stable'
or print_changelog_deltas ($package_name, $prev_version);
exit 0;