Getting v8 out
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2021-05-30 23:57:09 +02:00
parent 42923ced55
commit cac13fb64e
No known key found for this signature in database
GPG Key ID: 92DAD76BD9567B8A
3 changed files with 4 additions and 2 deletions

View File

@ -9,6 +9,8 @@
# abra x.x.x (UNRELEASED)
# abra 8.0.0 (2021-05-30)
- Fix secret length generation ([f537417](https://git.autonomic.zone/coop-cloud/abra/commit/1b85bf3d37280e9632c315d759c0f2d09c039fef))
- Fix checking out new apps ([#164](https://git.autonomic.zone/coop-cloud/abra/issues/164)
- Give up if YAML is invalid ([#154](https://git.autonomic.zone/coop-cloud/abra/issues/154))

2
abra
View File

@ -3,7 +3,7 @@
GIT_URL="https://git.autonomic.zone/coop-cloud/"
ABRA_APPS_URL="https://apps.coopcloud.tech"
ABRA_DIR="${ABRA_DIR:-$HOME/.abra}"
ABRA_VERSION="0.7.4"
ABRA_VERSION="8.0.0"
ABRA_BACKUP_DIR="${ABRA_BACKUP_DIR:-$ABRA_DIR/backups}"
ABRA_VENDOR_DIR="$ABRA_DIR/vendor"
ABRA_APPS_JSON="${ABRA_DIR}/apps.json"

View File

@ -1,6 +1,6 @@
#!/bin/bash
ABRA_VERSION="0.7.4"
ABRA_VERSION="8.0.0"
GIT_URL="https://git.autonomic.zone/coop-cloud/abra"
ABRA_SRC="$GIT_URL/raw/tag/$ABRA_VERSION/abra"
ABRA_DIR="${ABRA_DIR:-$HOME/.abra/}"