writeChangelog method
Implementation
Future<ChangeSummary?> writeChangelog({
required List<Commit> commits,
required String version,
}) {
return writeChangelogToFile(
commits: commits,
version: versionWithoutBuild(Version.parse(version)).toString(),
now: now,
file: project.changelog(),
);
}