Skip to content

Commit

Permalink
Up version to 1.7.1 for Java 8 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
renatoathaydes committed Mar 10, 2020
1 parent 3c4ef63 commit 42c2e8d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Add ``spock-reports`` to your ``<dependencies>``:
<dependency>
<groupId>com.athaydes</groupId>
<artifactId>spock-reports</artifactId>
<version>1.7.0</version>
<version>1.7.1</version>
<scope>test</scope>
<!-- this avoids affecting your version of Groovy/Spock -->
<exclusions>
Expand Down Expand Up @@ -101,7 +101,7 @@ repositories {
}
dependencies {
testCompile( 'com.athaydes:spock-reports:1.7.0' ) {
testCompile( 'com.athaydes:spock-reports:1.7.1' ) {
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!
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
defaultTasks 'clean', 'jar', 'test'

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

def groovyVersion = '2.5.10'
Expand Down
4 changes: 2 additions & 2 deletions news.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
* `10th of March 2020`

This release does not contain code changes. It is only a dependency upgrade release that should bring
This release (1.7.0) does not contain code changes. It is only a dependency upgrade release that should bring
support for builds running Java 9+ (tested up to Java 12).

Java 8 can still be used!
Java 8 can still be used, but version spock-reports version 1.7.1 should be used!

This is expected to be the last 1.x release, as version 2.0 is already in the works!
I intend to base spock-reports 2.x on Groovy 3 and Spock 2.x.
Expand Down
4 changes: 4 additions & 0 deletions releases/Release_Notes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.7.1 - 2020 March 10

* Publishing same code as 1.7.0 but compiled with Java 8. Use this version if Java 8 is required.

1.7.0 - 2020 March 10

* Upgraded Spock and Groovy versions to 1.2-groovy-2.5 and 2.5.10 respectively to support both Java 8 and Java 9+.
Expand Down

0 comments on commit 42c2e8d

Please sign in to comment.