Skip to content

Commit

Permalink
Updates to documentation and release notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
renatoathaydes committed Oct 30, 2022
1 parent c5f5b20 commit 4d19c63
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ Version compatibility:

| Java | Groovy | Spock | spock-reports |
|-------|--------|----------------|-------------------------|
| 17+ | 3.0.9+ | 2.1-groovy-3.0 | <b>2.3.1-groovy-3.0</b> |
| 8+ | 4.0+ | 2.3-groovy-4.0 | <b>2.4.0-groovy-4.0</b> |
| 17+ | 3.0.9+ | 2.1-groovy-3.0 | <b>2.3.2-groovy-3.0</b> |
| 11-16 | 3.0+ | 2.0-groovy-3.0 | <b>2.1.1-groovy-3.0</b> |
| 8+ | 2.5+ | 2.0-groovy-2.5 | <b>2.0-groovy-2.5</b> |
| 7, 8 | 2.4+ | 1.3+ | <b>1.8.0</b> |
Expand Down Expand Up @@ -64,13 +65,13 @@ Add ``spock-reports`` to your ``<dependencies>``:
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.30</version>
<version>1.7.36</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.30</version>
<version>1.7.36</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -92,8 +93,8 @@ dependencies {
transitive = false // this avoids affecting your version of Groovy/Spock
}
// if you don't already have slf4j-api and an implementation of it in the classpath, add this!
testImplementation 'org.slf4j:slf4j-api:1.7.30'
testRuntimeClasspath 'org.slf4j:slf4j-simple:1.7.30'
testImplementation 'org.slf4j:slf4j-api:1.7.36'
testRuntimeClasspath 'org.slf4j:slf4j-simple:1.7.36'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
defaultTasks 'check'

group = 'com.athaydes'
version = "2.4.0-groovy-4"
version = "2.4.0-groovy-4.0"
description = 'This project is a global extension for Spock to create test (or, in Spock terms, Specifications) reports.'

sourceCompatibility = '1.8'
Expand Down
4 changes: 4 additions & 0 deletions releases/Release_Notes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
2.4.0-groovy-4 - 2022 Oct 30

* Upgrade Groovy version to 4.0.6.
* Minor performance improvements and quieter logging.

2.3.2-groovy-3.0 - 2022 Oct 30

* #235 Maintain source code indentation in Vivid report.

2.3.1-groovy-3.0 - 2022 Aug 25
Expand Down

0 comments on commit 4d19c63

Please sign in to comment.