mirror of
https://github.com/dvorka/hstr.git
synced 2025-01-02 05:02:41 +08:00
25 lines
620 B
Bash
Executable file
25 lines
620 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Launchpad release checklist:
|
|
# - update version in source code (hstr.c)
|
|
# - update version in configure.ac
|
|
# - update release message in this file
|
|
# - update version in this file
|
|
# - check target Ubuntu distributions in this file
|
|
# - check minor version in this file
|
|
# - run this script from ~/p/hstr/launchpad
|
|
|
|
export HHBZRMSG="History timestamps, Zsh support and management fixes."
|
|
export VERSION=1.16.
|
|
export MINOR=1
|
|
|
|
# precise quantal saucy precise / trusty utopic
|
|
for DISTRO in trusty utopic
|
|
do
|
|
|
|
./ubuntu-make-distro.sh ${DISTRO} ${VERSION}${MINOR} "${HHBZRMSG}"
|
|
MINOR=`expr $MINOR + 1`
|
|
|
|
done
|
|
|
|
# eof
|