Documentation ¶
Overview ¶
Package entry provides a datastructure for changelog entries.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Entry ¶
type Entry struct { Previous *Entry // Get or Set the previous entry in the changelog. Next *Entry // Get or Set the next entry in the changelog. Tag string PrevTag string Date time.Time Added []string Changed []string Deprecated []string Removed []string Fixed []string Security []string Other []string }
Entry represents a single entry in the changelog
func NewEntry ¶
NewEntry creates a new entry (node) that can be added to the changelog datastructure.
func (*Entry) GetSection ¶
GetSection uses reflection to return a given section in the entry. If the section does not exist, an empty slice is returned.
Click to show internal directories.
Click to hide internal directories.