Skip to content

Commit

Permalink
0.0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sona-tar committed Oct 26, 2014
1 parent 9185233 commit 14b4863
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
CHANGES
=======

0.0.2 - Oct 26 2014
* Support --language, --user, --repo options.

0.0.1 - Oct 26 2014
* Initial versioned release
18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,28 @@ ghs usage
```sh
[sona ~]$ ghs --help
Usage:
ghs [OPTION] "QUERY"(The search keywords, as well as any qualifiers.)
ghs [OPTION] "QUERY"

Application Options:
-s, --sort= The sort field. 'stars', 'forks', or 'updated'. (best match)
-o, --order= The sort order. 'asc' or 'desc'. (desc)
-s, --sort= The sort field. 'stars', 'forks', or 'updated'. (best match)
-o, --order= The sort order. 'asc' or 'desc'. (desc)
-l, --language= searches repositories based on the language they’re written in.
-u, --user= limits searches to a specific user name.
-r, --repo= limits searches to a specific repository.
-v, --version print version infomation and exit.

Help Options:
-h, --help Show this help message
-h, --help Show this help message

Github search APIv3 QUERY infomation:
https://developer.github.com/v3/search/
https://help.github.com/articles/searching-repositories/

Version:
ghs 0.0.2
```

Exapmle
Example
===========
```sh
[sona ~]$ ghs github
Expand Down Expand Up @@ -74,4 +81,3 @@ function gpr () {
```sh
gpr
```

2 changes: 1 addition & 1 deletion ghs.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

var version = "0.0.1"
var version = "0.0.2"

func main() {
args, opts := GhsOptionParser()
Expand Down

0 comments on commit 14b4863

Please sign in to comment.