diff --git a/README.md b/README.md index e67b0a6..07d174e 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,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.0.0" + id "com.jraska.module.graph.assertion" version "1.1.0" } ``` diff --git a/plugin/build.gradle b/plugin/build.gradle index 91589fa..0bd081d 100644 --- a/plugin/build.gradle +++ b/plugin/build.gradle @@ -34,7 +34,7 @@ gradlePlugin { plugins { modulesGraphAssert { id = 'com.jraska.module.graph.assertion' - version = '1.0.0' + version = '1.1.0' displayName = 'Modules Graph Assert' description = 'Gradle plugin to keep your modules graph healthy and lean.' implementationClass = 'com.jraska.module.graph.assertion.ModuleGraphAssertionsPlugin'