blob: cb1803cbf355d52730e82c757ad7b7de7b3732bb (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 | #!/bin/bash
echo "############################################"
echo "##  Remove "-snapshot" from version ########"
echo "############################################"
# Enable tracing and exit on first failure
set -xe
# Normalize working dir to script dir
cd `dirname $0`/../..
echo "-- old version: `grep '"version"' package.json`"
sed -i .tmp -e 's/"version": "\(.*\)-snapshot"/"version": "\1"/' package.json
VERSION=$(node -e "console.log(require('./package.json').version)" | sed -e 's/\r//g')
echo "-- local version: $VERSION"
echo "-- commit and tag with v$VERSION"
git add package.json
git commit -m "chore(release): v$VERSION"
git tag -m "v$VERSION" v$VERSION
 |