// This file is part of helpers4.
// Copyright (C) 2025 baxyz
// SPDX-License-Identifier: LGPL-3.0-or-later
//! Conventional Commits: parse a message, decide the version bump, validate.
//!
//! [`Commit`] parses `type(scope)!: description` with its body and footers, following the
//! specification; [`Bump`] and `bump_for` turn a list of commits into the semantic-version bump they
//! call for, `is_valid` is the yes/no shortcut, and `emoji_for` gives the gitmoji of the helpers4
//! convention.
pub use bump_for;
pub use Bump;
pub use Commit;
pub use emoji_for;
pub use ParseCommitError;
pub use is_valid;