Skip to content

Commit

Permalink
Pull version out into version.go. Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
schmich committed May 13, 2016
1 parent a2bdfe4 commit a64e527
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ward/version.go
@@ -0,0 +1,3 @@
package main

const Version = "0.0.3"
2 changes: 1 addition & 1 deletion ward/ward.go
Expand Up @@ -463,7 +463,7 @@ func (app *App) runLink(existingFileName string) {
func (app *App) Run(args []string) {
ward := cli.App("ward", "Secure password manager - https://github.com/schmich/ward")

ward.Version("v version", "ward 0.0.2")
ward.Version("v version", "ward " + Version)

ward.Command("init", "Create a new credential database.", func(cmd *cli.Cmd) {
cmd.Spec = "[--stretch|--link=<file>]"
Expand Down

0 comments on commit a64e527

Please sign in to comment.