com.diffplug.spotless-changelog
                  Owner:
                  
                    
                    Ned Twigg
                  
                
Spotless Changelog checks that your changelog complies with the format of keepachangelog, and uses the information from **only the changelog file** to compute the version of the next release. If you want, you can use the computed version to update the changelog file, then automatically commit, tag, and push when a release is published.
https://github.com/diffplug/spotless-changelog
Sources: https://github.com/diffplug/blowdryer.git
Version 1.0.0
Created 12 January 2020.
Add this plugin to your build using the plugins DSL:
plugins {
  id("com.diffplug.spotless-changelog") version "1.0.0"
}
              See also:
- 
                
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.diffplug.spotless-changelog:com.diffplug.spotless-changelog.gradle.plugin:1.0.0") }It can then be applied in the precompiled script plugin:plugins { id("com.diffplug.spotless-changelog") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.diffplug.spotless-changelog:com.diffplug.spotless-changelog.gradle.plugin:1.0.0") } } apply(plugin = "com.diffplug.spotless-changelog") - Applying plugins to all subprojects .