wip: update exposed structs in preparation for whole commit parsing

This commit is contained in:
2020-11-01 16:22:27 +00:00
parent ca0993b1c7
commit 277f7ea311

View File

@@ -3,16 +3,22 @@
package commit
type Commit struct {
Type string
Scope string
Subject string
Body string
Footers []*Footer
IsBreaking bool
Type string
Scope string
Subject string
Body string
Footers []*Footer
References []*Reference
BreakingChanges []string
IsBreaking bool
}
type Footer struct {
Name string
Body string
Reference bool
Name string
Value string
}
type Reference struct {
Name string
Value string
}