Skip to content

Commit 6b2415f

Browse files
committed
Release 1.1.2
1 parent 61d21db commit 6b2415f

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

DEVELOPERS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Now release everything:
115115

116116
```
117117
mvn release:clean
118-
mvn --batch-mode -P release-sign-artifacts release:prepare -DautoVersionSubmodules=true -DdevelopmentVersion=1.1.2-SNAPSHOT
118+
mvn --batch-mode -P release-sign-artifacts release:prepare -DautoVersionSubmodules=true -DdevelopmentVersion=1.1.3-SNAPSHOT
119119
mvn -P release-sign-artifacts release:perform
120120
```
121121

History.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
## [Git master](https://github.com/cucumber/cucumber-jvm/compare/v1.1.1...master)
1+
## [1.1.2](https://github.com/cucumber/cucumber-jvm/compare/v1.1.1...v1.1.2)
22

3-
* [Examples/Spring] Spring Data JPA based repositories. ([#422](https://github.com/cucumber/cucumber-jvm/pull/422) Dmytro Chyzhykov)
4-
* [Examples/Gradle] Added a Gradle example. ([#446](https://github.com/cucumber/cucumber-jvm/pull/446) Ivan Yatskevich, David Kowis)
53
* [Core] Restore ability to diff with another DataTable ([#413](https://github.com/cucumber/cucumber-jvm/pull/413) Gilles Philippart)
64
* [Core] Executing a test with the --dry-run option does not skip the @Before or @After annotations ([#424](https://github.com/cucumber/cucumber-jvm/issues/424), [#444](https://github.com/cucumber/cucumber-jvm/pull/444) William Powell)
75
* [Clojure] Updated lein-cucumber version to 1.0.1 ([#414](https://github.com/cucumber/cucumber-jvm/pull/414) Nils Wloka)
86
* [JUnit] Upgrade to 4.11 ([#322](https://github.com/cucumber/cucumber-jvm/issues/322) [#445](https://github.com/cucumber/cucumber-jvm/pull/445) Petter Måhlén, Aslak Hellesøy)
9-
* [Spring] Upgrade to 3.2.0.RELEASE (Aslak Hellesøy)
7+
* [Spring] Upgrade to 3.2.1.RELEASE (Aslak Hellesøy)
108
* [Core] Strip command line arguments in case people accidentally invoke `cucumber.api.cli.Main` with arguments that have spaces left and right. (Aslak Hellesøy)
119
* [Core] Implemented `DataTable.equals()` and `DataTable.hashCode()`. (Aslak Hellesøy)
1210
* [Core] Support `DataTable.toTable(List<String[]>) and `DataTable.toTable(List<Map<String,String>>)` ([#433](https://github.com/cucumber/cucumber-jvm/issues/433), [#434](https://github.com/cucumber/cucumber-jvm/pull/434) Nicholas Albion, Aslak Hellesøy)
1311
* [Core] Formatters and `--dotcucumber` can now write to a file or an URL (via HTTP PUT). This allows easier distribution of reports. (Aslak Hellesøy)
1412
* [JUnit] Added `@Cucumber.Options.dotcucumber`, allowing metadata to be written from JUnit. Useful for code completion. ([#418](https://github.com/cucumber/cucumber-jvm/issues/418) Aslak Hellesøy)
1513
* [Core] Embedded data fails to display in HTML reports due to invalid string passed from HTMLFormatter ([#412](https://github.com/cucumber/cucumber-jvm/issues/412) Aslak Hellesøy)
16-
* [Scala] Downgrade to scala 2.9.2 - we'll only use stable versions from now on. (Aslak Hellesøy)
14+
* [Scala] Upgrade to scala 2.10.0. (Aslak Hellesøy)
1715
* [Scala] Passing Scenario reference in Before and After hooks ([#431](https://github.com/cucumber/cucumber-jvm/pull/431) Anshul Bajpai)
1816
* [Core] RunCukesTest prevents the execution of other tests ([#304](https://github.com/cucumber/cucumber-jvm/issues/304), [#430](https://github.com/cucumber/cucumber-jvm/pull/430) Mishail)
1917
* [Core] Deprecated `cucumber.runtime.PendingException` in favour of `cucumber.api.PendingException`. (Aslak Hellesøy)
2018
* [Core] New `@cucumber.api.Pending` annotation for custom `Exception` classes that will cause a scenario to be `pending` instead of `failed`. ([#427](https://github.com/cucumber/cucumber-jvm/pull/427) agattiker)
2119
* [Core] `--name 'name with spaces in single quotes'` is working ([#379](https://github.com/cucumber/cucumber-jvm/issues/379), [#429](https://github.com/cucumber/cucumber-jvm/pull/429) William Powell)
20+
* [Examples/Spring] Spring Data JPA based repositories. ([#422](https://github.com/cucumber/cucumber-jvm/pull/422) Dmytro Chyzhykov)
21+
* [Examples/Gradle] Added a Gradle example. ([#446](https://github.com/cucumber/cucumber-jvm/pull/446) Ivan Yatskevich, David Kowis)
2222

2323
## [1.1.1](https://github.com/cucumber/cucumber-jvm/compare/v1.0.14...1.1.1)
2424

examples/java-gradle/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ task cucumber() {
1818
}
1919

2020
dependencies {
21-
testCompile 'info.cukes:cucumber-java:1.1.1'
22-
testCompile 'info.cukes:cucumber-junit:1.1.1'
21+
testCompile 'info.cukes:cucumber-java:1.1.2'
22+
testCompile 'info.cukes:cucumber-junit:1.1.2'
2323

2424
testCompile 'junit:junit:4.11'
2525
}

examples/java-helloworld/build.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<project name="java-helloworld" basedir="." default="runcukes">
22
<property name="repo" value="https://oss.sonatype.org/content/repositories/releases"/>
3-
<property name="cucumber-jvm.version" value="1.1.1"/>
3+
<property name="cucumber-jvm.version" value="1.1.2"/>
44
<property name="cucumber-html.version" value="0.2.2"/>
55
<property name="jchronic.version" value="0.2.6"/>
66
<property name="junit.version" value="4.11"/>

examples/java-helloworld/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>info.cukes</groupId>
66
<artifactId>java-helloworld</artifactId>
7-
<version>1.1.1</version>
7+
<version>1.1.2</version>
88
<packaging>jar</packaging>
99
<name>Examples: Java Hello World</name>
1010

@@ -36,13 +36,13 @@
3636
<dependency>
3737
<groupId>info.cukes</groupId>
3838
<artifactId>cucumber-java</artifactId>
39-
<version>1.1.1</version>
39+
<version>1.1.2</version>
4040
<scope>test</scope>
4141
</dependency>
4242
<dependency>
4343
<groupId>info.cukes</groupId>
4444
<artifactId>cucumber-junit</artifactId>
45-
<version>1.1.1</version>
45+
<version>1.1.2</version>
4646
<scope>test</scope>
4747
</dependency>
4848
<dependency>

0 commit comments

Comments
 (0)