Skip to content

Commit 808c4d7

Browse files
committed
Bump version to 4.0.1
1 parent 049fdde commit 808c4d7

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ 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 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+
711
Version 4.0.0 (2024-06-11)
812
----------------------------
913
* Minimum supported Gradle version bumped to 7.6.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ Sample of plugin usage for groovy DSL:
1818

1919
```groovy
2020
plugins {
21-
id "com.dorongold.task-tree" version "4.0.0"
21+
id "com.dorongold.task-tree" version "4.0.1"
2222
}
2323
```
2424

2525
An equivalent for Kotlin DSL:
2626

2727
```kotlin
2828
plugins {
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
}
4646
rootProject {

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ java {
1414
}
1515

1616
group = 'com.dorongold.plugins'
17-
version = '4.0.0'
17+
version = '4.0.1'
1818
description = "Gradle plugin that adds a 'taskTree' task that prints task dependency tree"
1919

2020
dependencies {

0 commit comments

Comments
 (0)