Search Gradle plugins

com.diffplug.spotless-changelog

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 0.1.1

Created 02 January 2020.

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.

Using the plugins DSL:

plugins {
  id("com.diffplug.spotless-changelog") version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.diffplug.spotless-changelog:spotless-changelog-plugin-gradle:0.1.1")
  }
}

apply(plugin = "com.diffplug.spotless-changelog")

Using the plugins DSL:

plugins {
  id "com.diffplug.spotless-changelog" version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.diffplug.spotless-changelog:spotless-changelog-plugin-gradle:0.1.1"
  }
}

apply plugin: "com.diffplug.spotless-changelog"

Learn how to apply plugins to subprojects