Skip to content

Commit

Permalink
bump version to 0.0.2 and update README
Browse files Browse the repository at this point in the history
  • Loading branch information
i2bskn committed Jun 7, 2015
1 parent 83b8bae commit 5c950a5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,16 @@ Options
|--assigned|-a|none|Issues assigned to you|
|--created|-c|none|Issues created by you|
|--mentioned|-m|none|Issues mentioning you|
|--closed|none|none|Closed issue only|
|--all|none|none|With closed issue|

### State

Specify the state of the issues to display in `--state`.
Can be either `open`, `closed`, `all`.

### Sort

Specify the sort of the issues to display in `--sort`.
Can be either `created`, `updated`, `comments`.

### Format

Expand All @@ -70,7 +78,12 @@ You can specify the format in `--format` or `-f`.

Default format: `%n\t%l\t%t\t%u`

### Option Example
### Personal Access Token

Specify the token to be used for access to the github.
It is priority than in the `.gitconfig`.

### Option Specified Example

```
github-issue -n 5 -a --format="%t"
Expand Down
4 changes: 2 additions & 2 deletions github-issues.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
func main() {
app := cli.NewApp()
app.Name = "github-issues"
app.Version = "0.0.1"
app.Version = "0.0.2"
app.Usage = "List of GitHub issues"
app.Author = "i2bskn"
app.Email = "i2bskn@gmail.com"
Expand Down Expand Up @@ -45,7 +45,7 @@ func main() {
cli.StringFlag{
Name: "sort",
Value: "updated",
Usage: "What to sort issues by. Can be either created, updated, comments.",
Usage: "Specify the sort of the issues to display. Can be either created, updated, comments.",
},
cli.StringFlag{
Name: "format, f",
Expand Down

0 comments on commit 5c950a5

Please sign in to comment.