Compare commits

...

2 Commits

Author SHA1 Message Date
de337fd260 Moving to version 1.7 with caching. 2018-10-14 15:59:02 +02:00
12dc206323 Build with optional publish. 2018-10-14 15:57:22 +02:00
2 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,7 @@
**1.7.x**
- Closing #1. Initial article caching.
**1.6.x**
- Handling hidden tags.

View File

@ -1,10 +1,15 @@
#!/bin/bash
BASE_VERSION="1.6"
BASE_VERSION="1.7"
TODAYS_VERSION="1"
VERSION="${BASE_VERSION//./}$(date '+%y%m%j')$TODAYS_VERSION"
./version.sh ${VERSION} $@
./version.sh ${VERSION} $1
./publish-version.sh ${VERSION}
if [[ "$@" == *'--publish'* ]]
then
./publish-version.sh ${VERSION}
else
echo "Did not publish. If you wanted to do so, call the script with \"--publish\"."
fi