Skip to content

Commit

Permalink
Release Spock 2.1-M2
Browse files Browse the repository at this point in the history
  • Loading branch information
leonard84 committed Nov 12, 2021
1 parent 8a29ba0 commit b9cb2b2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ https://meetspock.appspot.com/.

Latest Versions
---------------
* The latest 2.0 release version is **2.1-M1** (2.1-M1-groovy-2.5, 2.1-M1-groovy-3.0), released on 2021-11-12.
* The latest 2.x release version is **2.1-M2** (2.1-M2-groovy-2.5, 2.1-M2-groovy-3.0), released on 2021-11-12.
* The current development version is **2.1-SNAPSHOT** (2.1-groovy-2.5-SNAPSHOT, 2.1-groovy-3.0-SNAPSHOT).

**NOTE:** Spock 2.0 is based on the JUnit 5 Platform and require Java 8+/groovy-2.5+ (Groovy 3.0 is recommended, especially in projects using Java 12+).
Expand All @@ -37,8 +37,8 @@ repositories {
}
dependencies {
testImplementation 'org.spockframework.spock:spock-core:spock-2.1-M1'
testImplementation 'org.spockframework.spock:spock-spring:spock-2.1-M1'
testImplementation 'org.spockframework.spock:spock-core:spock-2.1-M2'
testImplementation 'org.spockframework.spock:spock-spring:spock-2.1-M2'
}
```
3. For intermediate releases you can also use the commit-hash as version, e.g. compile `com.github.spockframework.spock:spock-core:d91bf785a1`
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ description = "Spock Framework"

ext {
baseVersion = "2.1"
snapshotVersion = true
milestone = false
snapshotVersion = false
milestone = 2
variants = [2.5, 3.0]
variant = System.getProperty("variant") as BigDecimal ?: variants.first()
buildScan.tag "groovy-$variant"
Expand Down
5 changes: 4 additions & 1 deletion docs/release_notes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
= Release Notes
include::include.adoc[]

== 2.1 (tbd)
== 2.1-M2 (2021-11-12)

* Fix issue with generated gradle module metadata that caused issues with consumers.
* Update JUnit, ASM, ByteBuddy dependencies.

== 2.1-M1 (2021-11-12)

Expand Down

0 comments on commit b9cb2b2

Please sign in to comment.