fixed release readme and bumper script
This commit is contained in:
parent
b72c271c2c
commit
7ec8eae2e7
2 changed files with 3 additions and 6 deletions
|
@ -3,6 +3,6 @@ The release process works roughly like this:
|
||||||
``` bash
|
``` bash
|
||||||
./scripts/bump-versions.sh <type-of-bump>
|
./scripts/bump-versions.sh <type-of-bump>
|
||||||
git commit
|
git commit
|
||||||
./scripts/upload.sh <hackage-usr> <hackage-pwd>
|
./scripts/upload.hs
|
||||||
git tag <version> && git push --tags
|
git tag <version> && git push --tags
|
||||||
```
|
```
|
||||||
|
|
|
@ -56,10 +56,7 @@ done
|
||||||
|
|
||||||
if $DRY_RUN ; then
|
if $DRY_RUN ; then
|
||||||
echo "Would have bumped position ${POSITION} on these packages:"
|
echo "Would have bumped position ${POSITION} on these packages:"
|
||||||
( cd "$ROOT" && bumper --dry-run -"$POSITION" $(join , "${SOURCES[@]}") )
|
( cd "$ROOT" && bumper --dry-run -"$POSITION" $(join , $SOURCES) )
|
||||||
else
|
else
|
||||||
( cd "$ROOT" && bumper -"$POSITION" $(join , "${SOURCES[@]}") )
|
( cd "$ROOT" && bumper -"$POSITION" $(join , $SOURCES) )
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Trailing newline, bumper does not ship with its own.
|
|
||||||
echo
|
|
||||||
|
|
Loading…
Reference in a new issue