Versions in this module Expand all Collapse all v0 v0.1.1 Feb 24, 2026 Changes in this version + func RawContentURL(repoURL, filename string) (string, error) type Parser + func FetchAndParse(ctx context.Context, repoURL, filename string) (*Parser, error) v0.1.0 Feb 15, 2026 Changes in this version + func FindChangelog(directory string) (string, error) + type Entry struct + Content string + Date *time.Time + type Format int + const FormatAuto + const FormatKeepAChangelog + const FormatMarkdown + const FormatUnderline + type Parser struct + func FindAndParse(directory string) (*Parser, error) + func Parse(content string) *Parser + func ParseFile(path string) (*Parser, error) + func ParseWithFormat(content string, format Format) *Parser + func ParseWithPattern(content string, pattern *regexp.Regexp) *Parser + func (p *Parser) Between(oldVersion, newVersion string) (string, bool) + func (p *Parser) Entries() map[string]Entry + func (p *Parser) Entry(version string) (Entry, bool) + func (p *Parser) LineForVersion(version string) int + func (p *Parser) Versions() []string