Skip to content

Commit df979a8

Browse files
committed
Release Spock 2.4-M1
1 parent a6b6532 commit df979a8

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
:spock-release-version: 2.3
2-
:spock-release-date: 2022-09-29
1+
:spock-release-version: 2.4-M1
2+
:spock-release-date: 2022-30-11
33
:spock-snapshot-version: 2.4
44

55
https://github.com/spockframework/spock/blob/master/LICENSE[image:https://img.shields.io/badge/License-Apache%202.0-blue.svg[License]]
@@ -13,14 +13,14 @@ https://gitter.im/spockframework/spock?utm_source=badge&utm_medium=badge&utm_cam
1313
https://ge.spockframework.org/scans[image:https://img.shields.io/badge/Revved%20up%20by-Gradle%20Enterprise-06A0CE?logo=Gradle&labelColor=02303A[Revved
1414
up by Gradle Enterprise]]
1515

16-
image::docs/images/spock-main-logo.png[width=100px, float=right]
16+
image::docs/images/spock-main-logo.png[width=100px,float=right]
1717

1818
== Spock Framework
1919

2020
Spock is a BDD-style developer testing and specification framework for
21-
Java and https://groovy-lang.org/[Groovy] applications. To learn more
21+
Java and https://groovy-lang.org/[Groovy] applications.To learn more
2222
about Spock, visit
23-
https://spockframework.org[https://spockframework.org]. To run a sample
23+
https://spockframework.org[https://spockframework.org].To run a sample
2424
spec in your browser use the
2525
https://gwc-experiment.appspot.com/[Groovy Web Console].
2626

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ description = "Spock Framework"
1414

1515
ext {
1616
baseVersion = "2.4"
17-
snapshotVersion = true
18-
milestone = 0
17+
snapshotVersion = false
18+
milestone = 1
1919
javaVersions = [8, 11, 17] // ensure that latest version is actually build on travis, otherwise no docs get published
2020
javaVersion = (System.getProperty("javaVersion") ?: 8) as int
2121
variants = [2.5, 3.0, 4.0]
2222
variant = System.getProperty("variant") as BigDecimal ?: variants.first()
2323
buildScan.tag "groovy-$variant"
2424
if (variant == 2.5) {
25-
groovyGroup = "org.codehaus.groovy"
26-
groovyVersion = "2.5.19"
27-
minGroovyVersion = "2.5.0"
28-
maxGroovyVersion = "2.9.99"
25+
groovyGroup = "org.codehaus.groovy"
26+
groovyVersion = "2.5.19"
27+
minGroovyVersion = "2.5.0"
28+
maxGroovyVersion = "2.9.99"
2929
if(javaVersion >= 17) {
3030
throw new InvalidUserDataException("Groovy $variant is not compatible with Java $javaVersion")
3131
}

0 commit comments

Comments
 (0)