We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08824b5 commit 6422399Copy full SHA for 6422399
gogs.go
@@ -14,7 +14,7 @@ import (
14
)
15
16
func Version() string {
17
- return "0.12.10"
+ return "0.12.11"
18
}
19
20
// Client represents a Gogs API client.
repo_hook.go
@@ -86,7 +86,12 @@ type PayloadCommit struct {
86
URL string `json:"url"`
87
Author *PayloadUser `json:"author"`
88
Committer *PayloadUser `json:"committer"`
89
- Timestamp time.Time `json:"timestamp"`
+
90
+ Added []string `json:"added"`
91
+ Removed []string `json:"removed"`
92
+ Modified []string `json:"modified"`
93
94
+ Timestamp time.Time `json:"timestamp"`
95
96
97
var (
0 commit comments