diff --git a/README.md b/README.md index 8c83135..070b2d1 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ A Gradle plugin that helps keep your module graph healthy and lean. Apply the plugin to a module, which dependencies graph you want to assert. ```groovy plugins { - id "com.jraska.module.graph.assertion" version "1.5.1" + id "com.jraska.module.graph.assertion" version "1.6.0" } ``` diff --git a/plugin/build.gradle b/plugin/build.gradle index efd9b75..36a624c 100644 --- a/plugin/build.gradle +++ b/plugin/build.gradle @@ -35,7 +35,7 @@ pluginBundle { mavenCoordinates { groupId = 'com.jraska.module.graph.assertion' artifactId = 'plugin' - version = "1.5.1" + version = "1.6.0" } } @@ -43,7 +43,7 @@ gradlePlugin { plugins { modulesGraphAssert { id = 'com.jraska.module.graph.assertion' - version = '1.5.1' + version = '1.6.0' displayName = 'Modules Graph Assert' description = 'Gradle plugin to keep your modules graph healthy and lean.' implementationClass = 'com.jraska.module.graph.assertion.ModuleGraphAssertionsPlugin'