Skip to content
This repository was archived by the owner on Jan 4, 2025. It is now read-only.

Commit abe4a2f

Browse files
Merge pull request #12 from tadashi-aikawa/0.9.0
0.9.0
2 parents 2d1721b + ec3c1b4 commit abe4a2f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

args.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"github.com/pkg/errors"
66
)
77

8-
const version = "0.8.1"
8+
const version = "0.9.0"
99
const usage = `Gowl.
1010
1111
Usage:

bitbucket.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ type projectLinks struct {
7272
}
7373

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

0 commit comments

Comments
 (0)