Skip to content

Commit

Permalink
Bump version to 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dorongold committed Jun 30, 2021
1 parent e13a99f commit 2662784
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.0.1 (2021-07-01)
----------------------------
* Upgrade `org.apache.commons:commons-lang3` due to vulnerability

Version 2.0 (2021-07-01)
----------------------------
* Support Gradle 6.8 and make it the minimum supported Gradle version
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.0-orange.svg)](./CHANGELOG.md)
[![version](https://img.shields.io/badge/version-2.0.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.0"
id "com.dorongold.task-tree" version "2.0.1"
}
```

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


group = 'com.dorongold.plugins'
version = '2.0'
version = '2.0.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 2662784

Please sign in to comment.