Blame view

bin/bump.sh 803 Bytes
cd21cb1e   Goutte   Add a script to b...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env bash

# Fill the VERSION file with the new version, following semantic versioning.
# You MUST run this script from the project's root directory.

# COLORS ######################################################################

Off='\033[0m'             # Text Reset

# Regular Colors
Black='\033[0;30m'        # Black
Red='\033[0;31m'          # Red
Green='\033[0;32m'        # Green
Yellow='\033[0;33m'       # Yellow
Blue='\033[0;34m'         # Blue
Purple='\033[0;35m'       # Purple
Cyan='\033[0;36m'         # Cyan
White='\033[0;37m'        # White

# BUSINESS ####################################################################

34621484   Antoine Goutenoir   Update the versio...
22
MY_DIR="${0%/*}"
cd21cb1e   Goutte   Add a script to b...
23
24
VERSION=`git describe --tags`
echo -e "${Green}Setting new version : ${Yellow}${VERSION}${Off}"
34621484   Antoine Goutenoir   Update the versio...
25
echo ${VERSION} > ${MY_DIR}/../VERSION