From 8855339317973abc08a42685fc6e915dd960beb3 Mon Sep 17 00:00:00 2001 From: Doron Gold Date: Fri, 29 Mar 2024 22:27:32 +0300 Subject: [PATCH] Bump plugin version to 3.0.0 --- CHANGELOG.md | 5 +++++ README.md | 6 +++--- build.gradle | 4 ++-- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7786391..9d4a6aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ Changelog This changelog format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +Version 3.0.0 (2024-03-29) +---------------------------- +* Add option `--with-description` to print task descriptions +* Omit inputs, outputs and task descriptions for repeated tree nodes + Version 2.1.1 (2022-12-31) ---------------------------- * Support Gradle 7.6 diff --git a/README.md b/README.md index 095f0bb..eb3de26 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Gradle Task Tree -[![version](https://img.shields.io/badge/version-2.1.1-orange.svg)](./CHANGELOG.md) +[![version](https://img.shields.io/badge/version-3.0.0-orange.svg)](./CHANGELOG.md) Gradle plugin that adds a `taskTree` task that prints task dependency tree report to the console. @@ -16,7 +16,7 @@ The plugin is published on [Gradle Plugin Portal](https://plugins.gradle.org/plu ```groovy plugins { - id "com.dorongold.task-tree" version "2.1.1" + id "com.dorongold.task-tree" version "3.0.0" } ``` @@ -30,7 +30,7 @@ initscript { maven { url "https://plugins.gradle.org/m2" } } dependencies { - classpath "com.dorongold.plugins:task-tree:2.1.1" + classpath "com.dorongold.plugins:task-tree:3.0.0" } } rootProject { diff --git a/build.gradle b/build.gradle index f2132ea..a48d6bc 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ buildscript { } } dependencies { - classpath 'com.gradle.publish:plugin-publish-plugin:0.15.0' + classpath 'com.gradle.publish:plugin-publish-plugin:0.21.0' } } @@ -25,7 +25,7 @@ java { } group = 'com.dorongold.plugins' -version = '2.1.1' +version = '3.0.0' description = "Gradle plugin that adds a 'taskTree' task that prints task dependency tree" //Building a text file that contains the classpath of the plugin code. needed for testing on gradle versions prior to 2.5