Skip to content

Commit

Permalink
label 1.1-rc-1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
robfletcher committed Jun 30, 2016
1 parent 67cbbec commit 0d96d73
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 4 deletions.
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ ext {
javaVersions = [1.6, 1.7, 1.8]
javaVersion = System.getProperty("java.specification.version") as BigDecimal
baseVersion = "1.1"
snapshotVersion = true
fullVersion = "$baseVersion-groovy-$variant" + (snapshotVersion ? "-SNAPSHOT" : "")
variantLessVersion = baseVersion + (snapshotVersion ? "-SNAPSHOT" : "")
snapshotVersion = false
releaseCandidate = 1
fullVersion = "$baseVersion-groovy-$variant" + (snapshotVersion ? "-SNAPSHOT" : "") + (releaseCandidate ? "-rc-$releaseCandidate" : "")
variantLessVersion = baseVersion + (snapshotVersion ? "-SNAPSHOT" : "") + (releaseCandidate ? "-rc-$releaseCandidate" : "")
libs = [
jetbrainsAnnotations: "org.jetbrains:annotations:13.0",
ant: "org.apache.ant:ant:1.9.7",
Expand Down
28 changes: 27 additions & 1 deletion docs/release_notes.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
= Release Notes

== 1.1-rc-1

A number of excellent pull requests have been integrated into the 1.1 stream.
Currently some features are incubating.
We encourage users to try out these new features and provide feedback so we can finalize the content for a 1.1 release.

=== What's New In This release

* <<Merged Pull Requests,44 merged pull requests>>
* The `verifyAll` method can be used to assert multiple boolean expressions _without_ short-circuiting those after a failure.
For example:
[source,groovy]
----
then:
verifyAll {
a == b
b == c
}
----
* Detached mocks via the `DetachedMockFactory` and `SpockMockFactoryBean` classes.
* Cells in a data table can refer to the current value for a column to the left.
* `Spy` can be used to create partial mocks for Java 8 interfaces with `default` methods just as it can for abstract classes.
* Improved power assert output when an exception occurs evaluating an assertion.
* A new `@PendingFeature` annotation to distinguish incomplete functionality from features with `@Ignore`.

Special thanks to all the contributors to this release: Dmitry Andreychuk, Aseem Bansal, Daniel Bechler, Fedor Bobin, Leonard Brünings, Leonard Daume, Marcin Erdmann, Jarl Friis, Søren Berg Glasius, Serban Iordache, Michal Kordas, Pap Lőrinc, Vlad Muresan, Etienne Neveu, Glyn Normington, David Norton, Magnus Palmér, Gus Power, Oliver Reissig, Kevin Wittek and Marcin Zajączkowski

== 1.0 (released 2015-03-02)

1.0 has arrived! Finally (and some years late) the version number communicates what
Expand Down Expand Up @@ -592,4 +619,3 @@ required; the only prerequisite for building Spock is a JDK installation (1.5 or
=== Fixed Issues

See the https://code.google.com/p/spock/issues/list?can=1&q=label%3AMilestone-0.6[issue tracker] for a list of fixed issues.

0 comments on commit 0d96d73

Please sign in to comment.