aboutsummaryrefslogtreecommitdiff
path: root/scripts/bump.sh
blob: 375307d5320393cb96c29eac287fc83852b0f223 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh

set -e

if [ -z "$1" ]; then
    echo "Usage: $0 VERSION" >&2
    exit 1
fi

VERSION=$1

if ! echo $VERSION | grep "^[0-9.]"; then
    echo "invalid version";
    exit 1
fi

cd $(dirname $0)/..

sed -r -i 's/^(version:[[:space:]]*)[0-9.]+/\1'"$VERSION"'/' cabal-helper.cabal

git add cabal-helper.cabal
git commit -m "Release version $VERSION" --allow-empty

git tag "v$VERSION"

cabal v2-sdist