generate_changelog.templating.RenderedChangelog RenderedChangelog# class generate_changelog.templating.RenderedChangelog[source]# The output of rendering a changelog. If it is an incremental changelog, full contains {heading}\n{notes} If it is a full changelog, heading and notes are empty. heading: Optional[str] = None# notes: Optional[str] = None# full: Optional[str] = None# __init__(heading=None, notes=None, full=None)# Parameters: heading (str | None) – notes (str | None) – full (str | None) – Return type: None