mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
4ef0ddc9d8
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/11739)
29 lines
711 B
Perl
29 lines
711 B
Perl
#! /usr/bin/env perl -pi
|
|
|
|
BEGIN {
|
|
our $count = 1; # Only the first one
|
|
our $RELEASE = $ENV{RELEASE};
|
|
our $RELEASE_TEXT = $ENV{RELEASE_TEXT};
|
|
our $PREV_RELEASE_DATE = $ENV{PREV_RELEASE_DATE} || 'xx XXX xxxx';
|
|
our $PREV_RELEASE_TEXT = $ENV{PREV_RELEASE_TEXT};
|
|
|
|
$RELEASE =~ s/-dev//;
|
|
}
|
|
|
|
if (/^### Changes between (\S+) and (\S+) \[xx XXX xxxx\]/
|
|
&& $count-- > 0) {
|
|
my $v1 = $1;
|
|
my $v2 = $PREV_RELEASE_TEXT || $2;
|
|
|
|
# If this is a pre-release, we do nothing
|
|
if ($RELEASE !~ /^\d+\.\d+\.\d+-(?:alpha|beta)/) {
|
|
$_ = <<_____
|
|
### Changes between $v2 and $RELEASE_TEXT [xx XXX xxxx]
|
|
|
|
*
|
|
|
|
### Changes between $v1 and $v2 [$PREV_RELEASE_DATE]
|
|
_____
|
|
}
|
|
}
|