From f47a3965b663a9b3ebee541c8016ef34bbf72ff0 Mon Sep 17 00:00:00 2001 From: Aditya Bhaskar Date: Sat, 14 Oct 2023 14:25:56 +0100 Subject: [PATCH] Update plugin version to 0.2.0 to prepare for grouped graph update --- README.md | 8 ++++---- plugin-build/gradle.properties | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4d05967..71456af 100644 --- a/README.md +++ b/README.md @@ -24,14 +24,14 @@ The plugin is available in the [Gradle plugins repository](https://plugins.gradl Kotlin: ```kotlin plugins { - id("io.github.adityabhaskar.dependencygraph") version "0.1.4" + id("io.github.adityabhaskar.dependencygraph") version "0.2.0" } ``` Groovy: ```groovy plugins { - id "io.github.adityabhaskar.dependencygraph" version "0.1.4" + id "io.github.adityabhaskar.dependencygraph" version "0.2.0" } ``` @@ -97,7 +97,7 @@ classDef andNode fill:#baffc9,color:#333333; classDef javaNode fill:#ffb3ba,color:#333333; %% Modules -subgraph +subgraph direction LR; :example:feature{{:example:feature}}:::javaNode; :example:models{{:example:models}}:::javaNode; @@ -132,7 +132,7 @@ classDef andNode fill:#baffc9,color:#333333; classDef javaNode fill:#ffb3ba,color:#333333; %% Modules -subgraph +subgraph direction LR; :example:data{{:example:data}}:::javaNode; :example:domain[:example:domain]:::javaNode; diff --git a/plugin-build/gradle.properties b/plugin-build/gradle.properties index 0eb4866..15804a0 100644 --- a/plugin-build/gradle.properties +++ b/plugin-build/gradle.properties @@ -1,5 +1,5 @@ ID=io.github.adityabhaskar.dependencygraph -VERSION=0.1.5 +VERSION=0.2.0 GROUP=io.github.adityabhaskar DISPLAY_NAME=Gradle module dependency graphs DESCRIPTION=A plugin to automatically produce Github/mermaid compatible dependency graphs