Skip to content

Commit

Permalink
Release Spock 1.2-RC3
Browse files Browse the repository at this point in the history
fix 904
fix 905
  • Loading branch information
leonard84 committed Sep 16, 2018
1 parent f820860 commit 0c3c553
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ http://webconsole.spockframework.org.

Latest Versions
---------------
The latest release version is **1.2-RC2** (1.2-RC2-groovy-2.4, 1.2-RC2-groovy-2.5), released on 2018-08-14. The
The latest release version is **1.2-RC3** (1.2-RC3-groovy-2.4, 1.2-RC3-groovy-2.5), released on 2018-09-16. The
current development version is **1.2-SNAPSHOT** (1.2-groovy-2.4-SNAPSHOT and 1.2-groovy-2.5-SNAPSHOT).

**NOTE:** Spock 1.2 drops support for Java 6, Groovy 2.0 and Groovy 2.3.
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ description = "Spock Framework"

ext {
baseVersion = "1.2"
snapshotVersion = true
releaseCandidate = 0
snapshotVersion = false
releaseCandidate = 3
variants = [2.4, 2.5]
variant = System.getProperty("variant") as BigDecimal ?: variants.first()
if (variant == 2.4) {
Expand All @@ -23,7 +23,7 @@ ext {
groovyConsoleExtraDependency = [] //bundled in groovy-all
} else if (variant == 2.5) {
groovyVersion = "2.5.2"
minGroovyVersion = "2.5.2"
minGroovyVersion = "2.5.0"
groovyDependency = [
"org.codehaus.groovy:groovy:${groovyVersion}",
"org.codehaus.groovy:groovy-json:${groovyVersion}",
Expand Down
12 changes: 10 additions & 2 deletions docs/release_notes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,19 @@
include::include.adoc[]


== 1.2-RC3 (tbd)
== 1.2-RC3 (2018-09-16)

=== What's New In This release

* Improve `@PendingFeature` to now have an optional `reason` attribute
* Add support for Java 11+ (#895, #902, #903)
* Improve `@PendingFeature` to now have an optional `reason` attribute (#907)
* Fix use String renderer for Class instances (#909)
* Fix mark new Spring extensions as @Beta (#890)
* Fix exclude groovy-groovysh from compile dependencies (#882)


Thanks to all the contributors to this release: Marc Philipp, Marcin Zajączkowski, signalw


== 1.2-RC2 (2018-09-04)

Expand Down

0 comments on commit 0c3c553

Please sign in to comment.