jmongard / Git.SemVersioning.Gradle

Gradle plugin for automatically versioning a project using semantic versioning and conventional commits with change log support based on git commit messages.
https://plugins.gradle.org/plugin/com.github.jmongard.git-semver-plugin
Apache License 2.0
38 stars 4 forks source link

Add support for a `FOOTER` section #41

Closed sschuberth closed 11 months ago

sschuberth commented 11 months ago

Similar to HEADER, support for a free-text FOOTER (which is empty by default) would be nice, e.g. to add optional notes to a release.

jmongard commented 11 months ago

Did you imagine a simple string that is appended last to the change log or something more elaborate?

https://github.com/jmongard/Git.SemVersioning.Gradle/commit/0e420b64efda595bcfefdd3a8c4e4525ca67adda

sschuberth commented 11 months ago

Did you imagine a simple string that is appended last to the change log or something more elaborate?

A simple string should be enough!

jmongard commented 11 months ago

Footer is now available in v0.10.0

   changeLogTexts {
                    footer = "A footer"
   }