Function parse_changelog::parse_iter[][src]

pub fn parse_iter(text: &str) -> ParseIter<'_, 'static>

Notable traits for ParseIter<'a, '_>

impl<'a> Iterator for ParseIter<'a, '_> type Item = Release<'a>;
Expand description

An iterator over all release notes in the given text.

Unlike parse function, this function doesn’t error on duplicate release notes or empty changelog.

This function uses the default version and prefix format. If you want to use another version format, use Parser::version_format.

See crate level documentation for changelog and version format supported by default.