From 74af9d7a557fd4785d0c0747b1e14eabd70d6e96 Mon Sep 17 00:00:00 2001
From: Josef Raska <6277721+jraska@users.noreply.github.com>
Date: Sun, 4 Jun 2023 22:37:03 +0100
Subject: [PATCH] Version 2.3.2 (#221)

---
 README.md           | 2 +-
 plugin/build.gradle | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index f2024ee..db73219 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.1"
+  id "com.jraska.module.graph.assertion" version "2.3.2"
 }
 ```
 
diff --git a/plugin/build.gradle b/plugin/build.gradle
index e0f81aa..dd0cdde 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.3.1"
+    version = "2.3.2"
   }
 }
 
@@ -43,7 +43,7 @@ gradlePlugin {
   plugins {
     modulesGraphAssert {
       id = 'com.jraska.module.graph.assertion'
-      version = '2.3.1'
+      version = '2.3.2'
       displayName = 'Modules Graph Assert'
       description = 'Gradle plugin to keep your modules graph healthy and lean.'
       implementationClass = 'com.jraska.module.graph.assertion.ModuleGraphAssertionsPlugin'