-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated
make set_version
to generate pack.sh
.
Rnning `pack.sh` runs `make release` with the correct version numbers for release. After making a new version: * update the version number in the `Makefile`. * Run `make set_version` * Commit your changes in git * Tag your version with `make tag` * package release files with ./pack.sh
- Loading branch information
1 parent
e243fbb
commit 561030e
Showing
3 changed files
with
20 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ | |
/browserbeat.test | ||
*.pyc | ||
build/ | ||
pack.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/usr/bin/env bash | ||
|
||
BEAT_VERSION=0.0.0 | ||
VERSION_QUALIFIER=alpha | ||
VERSION=${BEAT_VERSION}-${VERSION_QUALIFIER} | ||
|
||
BEAT_VERSION=${1} VERSION_QUALIFIER=${2} VERSION=${3} make release |