Skip to content

Commit

Permalink
1.2.1
Browse files Browse the repository at this point in the history
Changelog:
* Update libs (`drf-yasg` and `pyyaml`).
* Update `bootstrap` and `moment.js` for security reasons.
* Generate password button.

See merge request polemarch/ce!147
  • Loading branch information
onegreyonewhite committed Jun 11, 2019
2 parents c118291 + 95c9e87 commit 221cef9
Show file tree
Hide file tree
Showing 10 changed files with 510 additions and 414 deletions.
3 changes: 2 additions & 1 deletion autorelease.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
#!/usr/bin/env bash
CURRENT_VERSION=$(python setup.py --version | tr -d '\n')
TAG=$(git tag -l $CURRENT_VERSION)
MESSAGE=${CI_COMMIT_MESSAGE:-"Release ${CURRENT_VERSION}"}

if [ -z "${TAG}" ]; then
echo "Creating new tag ${CURRENT_VERSION}.";
git tag $CURRENT_VERSION > /dev/null 2>&1;
git tag $CURRENT_VERSION -m "${MESSAGE}"> /dev/null 2>&1;
git push origin $CURRENT_VERSION > /dev/null 2>&1;
else
echo "Current release ${CURRENT_VERSION} already exists. Update version to release."
Expand Down
Loading

0 comments on commit 221cef9

Please sign in to comment.