masqmail-0.2

view misc/list-versions @ 176:3dc9bf11858c

updated ChangeLog and NEWS
author meillo@marmaro.de
date Fri, 23 Jul 2010 10:26:55 +0200
parents
children
line source
1 #!/bin/sh
2 #
3 # list the version numbers in several important files
4 # run this script before generating a release
6 (
7 grep '^AC_INIT' /dev/null configure.*
8 printf "Changelog:"
9 sed -n '/^[0-9]\.[0-9]\{1,\}\.[0-9]\{1,\}/{p;q}' ChangeLog
10 printf "NEWS:"
11 sed -n '/^[0-9]\.[0-9]\{1,\}\.[0-9]\{1,\}/{p;q}' NEWS
12 grep '^\.TH' /dev/null man/*.[0-9]
13 ) | sed 's~\([^:]*\):.*\([0-9]\.[0-9]\{1,\}\.[0-9]\{1,\}\).*~\2 \1~'