Skip to content

Commit 276ed62

Browse files
committed
Release v2.0.0
1 parent c3bc9f3 commit 276ed62

File tree

8 files changed

+35
-5
lines changed

8 files changed

+35
-5
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,27 @@ assignees: radarsh
88
---
99

1010
**Description**
11+
1112
A clear and concise description of what problem you are facing.
1213

1314
**Versions**
15+
1416
- Test logger version:
1517
- Gradle version:
1618
- Java version:
1719

1820
**Type of test being run**
21+
1922
Whether it is JUnit, Spock, TestNg, or anything else. Also, try to include a sample test here.
2023

2124
**Test logger configuration**
25+
2226
Paste your test logger configuration here.
2327

2428
**Screenshots**
29+
2530
If possible, add screenshots to help explain your problem.
2631

2732
**Additional information**
33+
2834
Add any other information about the problem here.

.github/ISSUE_TEMPLATE/documentation-issue.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ assignees: radarsh
88
---
99

1010
**Description**
11+
1112
Explain what needs clarifying and where.

.github/ISSUE_TEMPLATE/feature-request.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ assignees: radarsh
88
---
99

1010
**Description**
11+
1112
A clear and concise description of what the feature should do.
1213

1314
**Additional information**
15+
1416
Supplement with examples, samples from other projects, etc here.

.github/ISSUE_TEMPLATE/question.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ assignees: radarsh
88
---
99

1010
**Description**
11+
1112
Ask your question here.

.github/ISSUE_TEMPLATE/technical-debt.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ assignees: radarsh
88
---
99

1010
**Description**
11+
1112
Describe the technical debt here.

CHANGELOG.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,25 @@
11
# Change Log
22

3-
## [v1.7.1](https://github.com/radarsh/gradle-test-logger-plugin/tree/v1.7.1) (2019-10-07)
3+
## [2.0.0](https://github.com/radarsh/gradle-test-logger-plugin/tree/v2.0.0) (2019-10-10)
4+
[Full Changelog](https://github.com/radarsh/gradle-test-logger-plugin/compare/v1.7.1...v2.0.0)
5+
6+
**Closed issues:**
7+
8+
- Upgrade versions of everything [\#132](https://github.com/radarsh/gradle-test-logger-plugin/issues/132)
9+
- Upgrade to Gradle 5.6.2 [\#129](https://github.com/radarsh/gradle-test-logger-plugin/issues/129)
10+
- Upgrade to Gradle 5.2 [\#102](https://github.com/radarsh/gradle-test-logger-plugin/issues/102)
411

5-
[Full Changelog](https://github.com/radarsh/gradle-test-logger-plugin/compare/v1.7.0...v.1.7.1)
12+
**Merged pull requests:**
13+
14+
- Update issue templates [\#135](https://github.com/radarsh/gradle-test-logger-plugin/pull/135) ([radarsh](https://github.com/radarsh))
15+
- Switch to modern Gradle dependency configurations [\#134](https://github.com/radarsh/gradle-test-logger-plugin/pull/134) ([radarsh](https://github.com/radarsh))
16+
- Upgrade all dependency versions [\#133](https://github.com/radarsh/gradle-test-logger-plugin/pull/133) ([radarsh](https://github.com/radarsh))
17+
- Remove references to Gradle 2.1 [\#131](https://github.com/radarsh/gradle-test-logger-plugin/pull/131) ([radarsh](https://github.com/radarsh))
18+
- Upgrade to Gradle 5.6.2 [\#130](https://github.com/radarsh/gradle-test-logger-plugin/pull/130) ([radarsh](https://github.com/radarsh))
19+
- Upgrade to Gradle 5.2 [\#107](https://github.com/radarsh/gradle-test-logger-plugin/pull/107) ([radarsh](https://github.com/radarsh))
20+
21+
## [v1.7.1](https://github.com/radarsh/gradle-test-logger-plugin/tree/v1.7.1) (2019-10-07)
22+
[Full Changelog](https://github.com/radarsh/gradle-test-logger-plugin/compare/v1.7.0...v1.7.1)
623

724
**Closed issues:**
825

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Scroll down for more themes and customisation options or visit the [screenshots
2525

2626
```groovy
2727
plugins {
28-
id 'com.adarshr.test-logger' version '1.7.1'
28+
id 'com.adarshr.test-logger' version '2.0.0'
2929
}
3030
```
3131

@@ -39,13 +39,15 @@ buildscript {
3939
}
4040
}
4141
dependencies {
42-
classpath 'com.adarshr:gradle-test-logger-plugin:1.7.1'
42+
classpath 'com.adarshr:gradle-test-logger-plugin:2.0.0'
4343
}
4444
}
4545
4646
apply plugin: 'com.adarshr.test-logger'
4747
```
4848

49+
Note: Test logger 2.x is incompatible with Gradle 4.x; please use test logger 1.7.1.
50+
4951
## Configuration
5052

5153
The plugin registers an extension called `testlogger` (all lowercase and one word) at project level

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=1.7.1
1+
version=2.0.0
22
group=com.adarshr
33
org.gradle.daemon=true
44
org.gradle.caching=false

0 commit comments

Comments
 (0)