From 38ebbb854508c597bf442c17cab1f11ccd5650d8 Mon Sep 17 00:00:00 2001 From: Josef Raska <6277721+jraska@users.noreply.github.com> Date: Wed, 15 Dec 2021 13:33:55 +0100 Subject: [PATCH] Prepare version 2.1.0 (#152) --- README.md | 2 +- plugin/build.gradle | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a0c0469..226db79 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,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 "2.0.0" + id "com.jraska.module.graph.assertion" version "2.1.0" } ``` diff --git a/plugin/build.gradle b/plugin/build.gradle index 94e61aa..639ab6c 100644 --- a/plugin/build.gradle +++ b/plugin/build.gradle @@ -35,7 +35,7 @@ pluginBundle { mavenCoordinates { groupId = 'com.jraska.module.graph.assertion' artifactId = 'plugin' - version = "2.0.0" + version = "2.1.0" } } @@ -43,7 +43,7 @@ gradlePlugin { plugins { modulesGraphAssert { id = 'com.jraska.module.graph.assertion' - version = '2.0.0' + version = '2.1.0' displayName = 'Modules Graph Assert' description = 'Gradle plugin to keep your modules graph healthy and lean.' implementationClass = 'com.jraska.module.graph.assertion.ModuleGraphAssertionsPlugin'