[][src]Type Definition parse_changelog::Changelog

type Changelog<'a> = IndexMap<&'a str, Release<'a>>;

A changelog.

The key is a version, and the value is the release note for that version.

The order is the same as the order written in the original text. (e.g., if the latest version comes first, changelog[0] is the release note for the latest version)

This type is returned by parse function or Parser::parse method.