From f95aa3d261e2cfe9e7834a7823d46dbbeae690e0 Mon Sep 17 00:00:00 2001 From: Cory Bennett Date: Thu, 19 Feb 2015 13:09:32 -0800 Subject: [PATCH] bump version --- README.md | 4 ++++ jira/main.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f719a42a..6652c506 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,10 @@ jira ls -t table # list all unresolved issues in pretty t jira create # create new "Bug" type issue for project GOJIRA jira create -i Task # create new Task type issue + +# make the table template your default "list" template: +jira export-templates -t table +mv $HOME/.jira.d/templates/table $HOME/.jira.d/templates/list ``` ## Download diff --git a/jira/main.go b/jira/main.go index a9710fce..45216df8 100644 --- a/jira/main.go +++ b/jira/main.go @@ -72,7 +72,7 @@ Command Options: or Watcher to search for `, user, fmt.Sprintf("%s/.jira.d/templates", home), user) - args, err := docopt.Parse(usage, nil, true, "0.0.3", false, false) + args, err := docopt.Parse(usage, nil, true, "0.0.4", false, false) if err != nil { log.Error("Failed to parse options: %s", err) os.Exit(1)