Skip to content

Commit

Permalink
Merge pull request #12 from tadashi-aikawa/0.9.0
Browse files Browse the repository at this point in the history
0.9.0
  • Loading branch information
tadashi-aikawa committed Jul 17, 2019
2 parents 2d1721b + ec3c1b4 commit abe4a2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion args.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"github.com/pkg/errors"
)

const version = "0.8.1"
const version = "0.9.0"
const usage = `Gowl.
Usage:
Expand Down
2 changes: 1 addition & 1 deletion bitbucket.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ type projectLinks struct {
}

func (c *BitbucketClient) searchRepositories(word string) (BitbucketRepositoryResponse, error) {
url := fmt.Sprintf("%v/rest/api/1.0/repos?name=%v", c.BaseURL, word)
url := fmt.Sprintf("%v/rest/api/1.0/repos?name=%v&limit=100", c.BaseURL, word)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return BitbucketRepositoryResponse{}, err
Expand Down

0 comments on commit abe4a2f

Please sign in to comment.