Skip to content

Commit 8855339

Browse files
committed
Bump plugin version to 3.0.0
1 parent c8a5490 commit 8855339

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ Changelog
44
This changelog format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
Version 3.0.0 (2024-03-29)
8+
----------------------------
9+
* Add option `--with-description` to print task descriptions
10+
* Omit inputs, outputs and task descriptions for repeated tree nodes
11+
712
Version 2.1.1 (2022-12-31)
813
----------------------------
914
* Support Gradle 7.6

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Gradle Task Tree
22

3-
[![version](https://img.shields.io/badge/version-2.1.1-orange.svg)](./CHANGELOG.md)
3+
[![version](https://img.shields.io/badge/version-3.0.0-orange.svg)](./CHANGELOG.md)
44

55
Gradle plugin that adds a `taskTree` task that prints task dependency tree report to the console.
66

@@ -16,7 +16,7 @@ The plugin is published on [Gradle Plugin Portal](https://plugins.gradle.org/plu
1616

1717
```groovy
1818
plugins {
19-
id "com.dorongold.task-tree" version "2.1.1"
19+
id "com.dorongold.task-tree" version "3.0.0"
2020
}
2121
```
2222

@@ -30,7 +30,7 @@ initscript {
3030
maven { url "https://plugins.gradle.org/m2" }
3131
}
3232
dependencies {
33-
classpath "com.dorongold.plugins:task-tree:2.1.1"
33+
classpath "com.dorongold.plugins:task-tree:3.0.0"
3434
}
3535
}
3636
rootProject {

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
}
1111
}
1212
dependencies {
13-
classpath 'com.gradle.publish:plugin-publish-plugin:0.15.0'
13+
classpath 'com.gradle.publish:plugin-publish-plugin:0.21.0'
1414
}
1515
}
1616

@@ -25,7 +25,7 @@ java {
2525
}
2626

2727
group = 'com.dorongold.plugins'
28-
version = '2.1.1'
28+
version = '3.0.0'
2929
description = "Gradle plugin that adds a 'taskTree' task that prints task dependency tree"
3030

3131
//Building a text file that contains the classpath of the plugin code. needed for testing on gradle versions prior to 2.5

0 commit comments

Comments
 (0)