Skip to content

Commit

Permalink
Bump version to 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
dorongold committed Jan 1, 2020
1 parent 340f931 commit 34b1db8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ 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 1.5 (2020-01-01)
----------------------------
* Compatibility with gradle with gradle 6

Version 1.4 (2019-06-01)
----------------------------
Expand Down
8 changes: 4 additions & 4 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-1.4-orange.svg)](./CHANGELOG.md)
[![version](https://img.shields.io/badge/version-1.5-orange.svg)](./CHANGELOG.md)

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

Expand All @@ -22,7 +22,7 @@ buildscript {
}
}
dependencies {
classpath "gradle.plugin.com.dorongold.plugins:task-tree:1.4"
classpath "gradle.plugin.com.dorongold.plugins:task-tree:1.5"
}
}
Expand All @@ -32,7 +32,7 @@ apply plugin: "com.dorongold.task-tree"
### Alternative Build Script Snippet (using the incubating "plugins" mechanism ):
```groovy
plugins {
id "com.dorongold.task-tree" version "1.4"
id "com.dorongold.task-tree" version "1.5"
}
```

Expand All @@ -46,7 +46,7 @@ initscript {
maven { url "https://plugins.gradle.org/m2" }
}
dependencies {
classpath "gradle.plugin.com.dorongold.plugins:task-tree:1.4"
classpath "gradle.plugin.com.dorongold.plugins:task-tree:1.5"
}
}
rootProject {
Expand Down

0 comments on commit 34b1db8

Please sign in to comment.