aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/gogs/go-gogs-client/gogs.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/gogs/go-gogs-client/gogs.go')
-rw-r--r--vendor/github.com/gogs/go-gogs-client/gogs.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/gogs/go-gogs-client/gogs.go b/vendor/github.com/gogs/go-gogs-client/gogs.go
index 1c81d16f..582900f8 100644
--- a/vendor/github.com/gogs/go-gogs-client/gogs.go
+++ b/vendor/github.com/gogs/go-gogs-client/gogs.go
@@ -14,7 +14,7 @@ import (
)
func Version() string {
- return "0.12.12"
+ return "0.12.13"
}
// Client represents a Gogs API client.
@@ -24,7 +24,7 @@ type Client struct {
client *http.Client
}
-// NewClient initializes and returns a API client.
+// NewClient initializes and returns an API client.
func NewClient(url, token string) *Client {
return &Client{
url: strings.TrimSuffix(url, "/"),