Skip to content

Commit

Permalink
version bump to v0.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
dreadl0ck committed Jan 17, 2019
1 parent d57d265 commit 9990442
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion zeus/commands.yml
Expand Up @@ -24,7 +24,7 @@ commands:
- clean
buildNumber: true
exec: |
echo "generating netcap binary v${VERSION}"
echo "[INFO] generating netcap binary v${VERSION}"
go build -ldflags "-X github.com/dreadl0ck/netcap.Version=v${VERSION}" -o bin/netcap -i github.com/dreadl0ck/netcap/cmd
build-all-linux-docker:
Expand All @@ -33,6 +33,17 @@ commands:
dependencies:
- clean

version-bump:
description: bump framework version and add git version tag
exec: |
read -p "[WARNING] This will bump the version to $VERSION, as configured in the zeus/commands.yml. Are you sure? Hit [Enter] to proceed"
git add .
git commit -m "version bump to v${VERSION}"
git push
echo "[INFO] version bumped to v${VERSION}"
release:
description: release a new version, bundle and publish on github
dependencies:
Expand Down

0 comments on commit 9990442

Please sign in to comment.