diff options
author | Daniel Gröber <dxld@darkboxed.org> | 2019-12-28 16:02:15 +0100 |
---|---|---|
committer | Daniel Gröber <dxld@darkboxed.org> | 2019-12-28 16:02:15 +0100 |
commit | 8c5e9c5e7cca958cf5cf364f76494fcae1d24b5d (patch) | |
tree | a71c70c5625e3e9c8c29cbcffe1ad7ef74b81dfc /scripts | |
parent | dd27507479107de57e815ca24d639706d2d4833b (diff) |
scripts: Add sdist to bump.sh
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/bump.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/bump.sh b/scripts/bump.sh index a5a2ba7..375307d 100755 --- a/scripts/bump.sh +++ b/scripts/bump.sh @@ -19,6 +19,8 @@ cd $(dirname $0)/.. sed -r -i 's/^(version:[[:space:]]*)[0-9.]+/\1'"$VERSION"'/' cabal-helper.cabal git add cabal-helper.cabal -git commit -m "Bump version to $VERSION" +git commit -m "Release version $VERSION" --allow-empty git tag "v$VERSION" + +cabal v2-sdist |