Skip to content
This repository was archived by the owner on Jun 17, 2022. It is now read-only.

Commit

Permalink
chore(release): 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperupcall committed May 26, 2021
1 parent 4fe401d commit 6d63d8a
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* text=auto
.glue linguist-generated
# TODO
.glue-vendor linguist-vendored
\
Empty file added .gitignore
Empty file.
4 changes: 2 additions & 2 deletions .glue/commands/auto/Bash.release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ declare -r newVersion="$REPLY"

# Ensure new version is valid (does not already exist)
if [ -n "$(git tag -l "v$newVersion")" ]; then
# TODO: ensure there is no tag that exists that is greater than it
# TODO: ensure there are no tag sthat exists that are greater than it
die 'Version already exists in a Git tag'
fi

Expand All @@ -33,7 +33,7 @@ sed -i -e "s|\(PROGRAM_VERSION=\"\).*\(\"\)|\1${currentVersion}\2|g" glue.sh

# Local Release
git tag -a "v$newVersion" -m "Release $newVersion" HEAD
git push --tags origin HEAD
git push --follow-tags origin HEAD

declare -a args=()
if [ -f CHANGELOG.md ]; then
Expand Down
2 changes: 0 additions & 2 deletions .glue/common/auto/toml.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ toml.get_key() {
continue
fi

echo "line: $line"

shopt -s extglob

key="${line%%=*}"
Expand Down
5 changes: 5 additions & 0 deletions .versionrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"bumpFiles": [

]
}
5 changes: 1 addition & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# 0.6.0
# [](https://github.com/eankeen/glue/compare/v0.6.1...v) (2021-05-26)

- Swap execution order of scripts. Now, general scripts execute before their specialized projectType counterparts

# 0.5.0

- First release
3 changes: 2 additions & 1 deletion glue-auto.toml
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
version = "0.5.0"
version = "0.3.0"
other = "something"

0 comments on commit 6d63d8a

Please sign in to comment.