Documentation ¶
Overview ¶
config holds all the required Types and Functions to work with the Changelog-Go Configuration File
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type V1 ¶
type V1 struct { PreRelease struct { // detect pre-releases or not Detect bool `yaml:"detect"` DeletePreRelease bool `yaml:"deletePreRelease"` // if true the pre-releases would be deleted on an non pre-release FoldPreReleases bool `yaml:"foldPreReleases"` } `yaml:"preRelease"` Entry struct { Author rune `yaml:"author"` } `yaml:"entry"` Changelog struct { // Changelog Path where changelog-go will save all the Entries. // Will be changed to a relative path after calling Check() EntryPath string `yaml:"entryPath"` Changelog string `yaml:"changelog"` } `yaml:"changelog"` }
V1 represents the Config Version 1. Versioning the Config Types is to provide Backward compatibility.
Click to show internal directories.
Click to hide internal directories.