46812c47fb
We actually need to override LC_TIME if it is set, so use LC_ALL which overrides everything rather than LANG that is used as a fallback.
21 lines
510 B
Bash
Executable File
21 lines
510 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
export LC_ALL=C
|
|
|
|
DATE=${1:-now}
|
|
|
|
# update the files
|
|
sed -e '1s/([^)]*)/('"$(date -d "$DATE" +'%B %d, %Y')"')/' -i NEWS
|
|
sed -e '1s/^\(.TH "[^"]*" "[^"]*" "\)[^"]*\("\)/\1'"$(date -d "$DATE" +'%B %d, %Y')"'\2/' -i doc/geany.1.in
|
|
sed -e 's/^\(:Date: \).*$/\1'"$(date -d "$DATE" +'%Y-%m-%d')"'/' -i doc/geany.txt
|
|
|
|
# show commit message to use
|
|
cat <<EOF
|
|
Message for the commit, after you have checked the changes:
|
|
-----------------------------------------------------------
|
|
|
|
Set release date
|
|
EOF
|