Documentation ¶
Index ¶
Constants ¶
View Source
const ( Feature = "feat" Fix = "fix" )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Commit ¶
type Commit struct { Type string Scope string Description string Breaking bool Hash string ShortHash string AuthorName string }
Commit represents the conventional commit understanding of a git commit.
type Release ¶
type Release struct { Version *semver.Version PreviousVersion *semver.Version Date string Breaking []Commit Features []Commit Fixes []Commit CommitURL string }
Release represents all the meta data about a release.
type ReleaseType ¶
type ReleaseType int
ReleaseType corresponds the semantic version numbers.
const ( Major ReleaseType = iota Minor Patch )
Click to show internal directories.
Click to hide internal directories.