File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ Changelog
44This changelog format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
55This project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ Version 4.0.1 (2025-03-08)
8+ ----------------------------
9+ * Fix issue where failure to resolve some task details, such as task inputs, causes ` taskTree ` to fail.
10+
711Version 4.0.0 (2024-06-11)
812----------------------------
913* Minimum supported Gradle version bumped to 7.6.
Original file line number Diff line number Diff line change @@ -18,15 +18,15 @@ Sample of plugin usage for groovy DSL:
1818
1919``` groovy
2020plugins {
21- id "com.dorongold.task-tree" version "4.0.0 "
21+ id "com.dorongold.task-tree" version "4.0.1 "
2222}
2323```
2424
2525An equivalent for Kotlin DSL:
2626
2727``` kotlin
2828plugins {
29- id(" com.dorongold.task-tree" ) version " 4.0.0 "
29+ id(" com.dorongold.task-tree" ) version " 4.0.1 "
3030}
3131```
3232
@@ -40,7 +40,7 @@ initscript {
4040 maven { url "https://plugins.gradle.org/m2" }
4141 }
4242 dependencies {
43- classpath "com.dorongold.plugins:task-tree:4.0.0 "
43+ classpath "com.dorongold.plugins:task-tree:4.0.1 "
4444 }
4545}
4646rootProject {
Original file line number Diff line number Diff line change 1414}
1515
1616group = ' com.dorongold.plugins'
17- version = ' 4.0.0 '
17+ version = ' 4.0.1 '
1818description = " Gradle plugin that adds a 'taskTree' task that prints task dependency tree"
1919
2020dependencies {
You can’t perform that action at this time.
0 commit comments