We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab9ce5b commit a934b01Copy full SHA for a934b01
scripts/release.pl
@@ -153,8 +153,7 @@ ($$)
153
run( "scripts/create_changelog.sh", "create_changelog.sh failed" );
154
155
unless( $dopoint ) {
156
- # 2.14 already there - skip it this time
157
- #run( "scripts/update-news.pl $newmajor $newminor '$release'" );
+ run( "scripts/update-news.pl $newmajor $newminor '$release'" ) if $major>2 || ($major==2 && $minor>14);
158
159
run( "git commit -a -m \"changelog and news update for $release\"", "could not commit changelog and news update" );
160
scripts/update-news.pl
@@ -47,7 +47,7 @@
47
print $news "$_\n";
48
}
49
50
-print $news "\n";
+print $news "-\n\n";
51
52
while(<$in>) {
53
print $news $_;
0 commit comments