Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
ejholmes committed Apr 10, 2015
1 parent daa3854 commit db9298e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@

cmd:
godep go build -o build/deploy ./cmd/deploy

release:
goxc -bc="linux,darwin" -d build -pv="0.0.2"
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.1
2 changes: 1 addition & 1 deletion deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ var flags = []cli.Flag{
// NewApp returns a new cli.App for the deploy command.
func NewApp() *cli.App {
app := cli.NewApp()
app.Version = "0.0.1"
app.Version = Version
app.Name = Name
app.Usage = Usage
app.Flags = flags
Expand Down
3 changes: 3 additions & 0 deletions version.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package deploy

const Version = "0.0.2"

0 comments on commit db9298e

Please sign in to comment.