Skip to content

Commit

Permalink
chore(release): v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperupcall committed Jun 6, 2021
1 parent e60dac4 commit d81087f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .glue/commands/auto/Bash.release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ task() {

util.general_version_bump "$newVersion"

ensure.git_working_tree_dirty
ensure.git_working_tree_clean

if is.dry_release; then
log.info "Skipping Git taging and artifact release"
Expand Down
11 changes: 6 additions & 5 deletions .glue/common/auto/generated.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,26 @@

generated.in() {
local dir="$1"

ensure.nonZero 'dir' "$dir"

# shellcheck disable=SC2034
declare -g GENERATED_DIR="$GLUE_WD/.glue/generated/$dir"
declare -g GENERATED_DIR_PRETTY="$dir"

if [ -d "$GLUE_WD/.glue/generated/$dir" ]; then
rm -rf "$GLUE_WD/.glue/generated/$dir"
fi
mkdir "$GLUE_WD/.glue/generated/$dir"


shopt -q extglob
local extGlobExitStatus=$?
shopt -s extglob

if [[ "${LANG,,?}" == *utf?(-)8 ]]; then
echo "■■■■■■ 🢂 IN GENERATED: '$GENERATED_DIR'"
echo "■■■■■■ 🢂 IN GENERATED: '$GENERATED_DIR_PRETTY'"
else
echo "=> IN GENERATED: '$GENERATED_DIR'"
echo "=> IN GENERATED: '$GENERATED_DIR_PRETTY'"
fi

if (( extGlobExitStatus != 0 )); then
Expand All @@ -30,9 +31,9 @@ generated.in() {

generated.out() {
if [[ "${LANG,,?}" == *utf?(-)8 ]]; then
echo "■■■■■■ 🢂 OUT GENERATED: '$GENERATED_DIR'"
echo "■■■■■■ 🢂 OUT GENERATED: '$GENERATED_DIR_PRETTY'"
else
echo "=> OUT GENERATED: '$GENERATED_DIR'"
echo "=> OUT GENERATED: '$GENERATED_DIR_PRETTY'"
fi

cd "$GLUE_WD" || error.cd_failed
Expand Down
2 changes: 1 addition & 1 deletion glue-auto.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "0.6.2+a151090-DIRTY"
version = "0.7.0"
2 changes: 1 addition & 1 deletion pkg/lib/cmd/bash-args.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source "$ARGS_LIB_DIR/util/util.sh"

declare -r PROGRAM_VERSION="0.6.2+a151090-DIRTY"
declare -r PROGRAM_VERSION="0.7.0"

bash-args-main() {
local flag="${1:-}"
Expand Down

0 comments on commit d81087f

Please sign in to comment.