From 0db4e7f461b9cb3abd7a09c6adef6ce176357847 Mon Sep 17 00:00:00 2001 From: Josef Raska <6277721+jraska@users.noreply.github.com> Date: Mon, 5 Jun 2023 14:05:21 +0100 Subject: [PATCH] Version 2.4.0 (#224) --- README.md | 2 +- plugin/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index db73219..c423b18 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.3.2" + id "com.jraska.module.graph.assertion" version "2.4.0" } ``` diff --git a/plugin/build.gradle b/plugin/build.gradle index aac69b6..37259be 100644 --- a/plugin/build.gradle +++ b/plugin/build.gradle @@ -36,7 +36,7 @@ gradlePlugin { plugins { modulesGraphAssert { id = 'com.jraska.module.graph.assertion' - version = '2.3.2' + version = '2.4.0' displayName = 'Modules Graph Assert' description = 'Gradle plugin to keep your modules graph healthy and lean.' implementationClass = 'com.jraska.module.graph.assertion.ModuleGraphAssertionsPlugin'