version 919 Bytes
Newer Older
1 2 3
#!/bin/bash

# Prompt
4 5
TMPFILE="xxxx"

6 7 8
git tag
echo "Which version ?"
read VERSION
9
echo "## Version ${VERSION}" > $TMPFILE
10 11
cat CHANGELOG.md >> $TMPFILE
mv $TMPFILE CHANGELOG.md
12
vim CHANGELOG.md < /dev/tty
13 14 15 16 17

#################################################################
# Haskell
#################################################################
YAML="package.yaml"
Alexandre Delanoë's avatar
Alexandre Delanoë committed
18
CABL="gargantext.cabal"
Alexandre Delanoë's avatar
Alexandre Delanoë committed
19
sed -i "s/version:.*/version: \'$VERSION\'/" $YAML
Alexandre Delanoë's avatar
Alexandre Delanoë committed
20
sed -i "s/^version:.*/version: $VERSION/" $CABL
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
git add -u 
git commit -m "[VERSION] +1 to ${VERSION}"
git tag $VERSION

#################################################################
# Purescript
#################################################################
JSON="purescript-gargantext/package.json"
sed -i "s/\"version\": \".*\"/\"version\": \"${VERSION}\"/" $JSON
cd purescript-gargantext
git add -u
git commit -m "[VERSION] +1 to ${VERSION}"
git tag $VERSION
cd ..