generate_changelog.git_ops.TagInfo TagInfo# class generate_changelog.git_ops.TagInfo[source]# Simple storage of tag information. name: str# commit: str# tagger: Union[str, Actor]# tagged_datetime: datetime# property date_string: str# Convenience method to return an ISO8601 date string. __init__(name, commit, tagger, tagged_datetime)# Parameters: name (str) – commit (str) – tagger (str | Actor) – tagged_datetime (datetime) – Return type: None