Skip to content

Commit

Permalink
Bump version to 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dorongold committed Dec 31, 2022
1 parent 8030692 commit 5b30d80
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ 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 2.1.1 (2022-12-31)
----------------------------
* Support Gradle 7.6

Version 2.1.0 (2021-07-01)
----------------------------
* Use [Task Configuration Avoidance](https://docs.gradle.org/current/userguide/task_configuration_avoidance.html)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Gradle Task Tree

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

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

Expand All @@ -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.0"
id "com.dorongold.task-tree" version "2.1.1"
}
```

Expand All @@ -30,7 +30,7 @@ initscript {
maven { url "https://plugins.gradle.org/m2" }
}
dependencies {
classpath "com.dorongold.plugins:task-tree:2.1.0"
classpath "com.dorongold.plugins:task-tree:2.1.1"
}
}
rootProject {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ java {
}

group = 'com.dorongold.plugins'
version = '2.1.0'
version = '2.1.1'
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
Expand Down

0 comments on commit 5b30d80

Please sign in to comment.