notabene 0.2.0

A fast linter for changelogs in Keep a Changelog format
Documentation
1
2
3
4
5
6
7
8
//! Represent changelogs in Keep a Changelog format.
pub mod owned;
pub mod parsed;
pub(crate) mod traits;

pub use owned::OwnedChangelog;
pub use parsed::ParsedChangelog;
pub use traits::{Changelog, Changes, Release, Unreleased};