Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3288726

Browse files
committed
Prepare for release 1.2.5
1 parent 8274909 commit 3288726

File tree

6 files changed

+14
-12
lines changed

6 files changed

+14
-12
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,13 @@ release will fail:
120120
mvn javadoc:javadoc
121121
```
122122

123-
Run `git commit -am "Release X.Y.Z"`
123+
Run `git commit -am "Prepare for release X.Y.Z"`
124124

125-
Now release everything:
125+
Now release everything (replace X.Y.Z below with the next release number):
126126

127127
```
128128
mvn release:clean
129-
mvn --batch-mode -P release-sign-artifacts release:prepare -DautoVersionSubmodules=true -DdevelopmentVersion=1.1.5-SNAPSHOT
129+
mvn --batch-mode -P release-sign-artifacts release:prepare -DautoVersionSubmodules=true -DdevelopmentVersion=X.Y.Z-SNAPSHOT
130130
mvn -P release-sign-artifacts release:perform
131131
```
132132

History.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
## [1.2.5-SNAPSHOT](https://github.com/cucumber/cucumber-jvm/compare/v1.2.4...master) (In Git)
1+
## [1.2.6-SNAPSHOT](https://github.com/cucumber/cucumber-jvm/compare/v1.2.5...master) (In Git)
22

3-
* [Java8] Fix closing over local variables ([#916](https://github.com/cucumber/cucumber-jvm/issues/916), [#924](https://github.com/cucumber/cucumber-jvm/pull/924), [#929](https://github.com/cucumber/cucumber-jvm/pull/929) Alexander Torstling, Aslak Hellesøy)
3+
## [1.2.5](https://github.com/cucumber/cucumber-jvm/compare/v1.2.4...v1.2.5) (2016-09-12)
4+
5+
* [Java8] Fix closing over local variables ([#916](https://github.com/cucumber/cucumber-jvm/issues/916), [#924](https://github.com/cucumber/cucumber-jvm/pull/924), [#929](https://github.com/cucumber/cucumber-jvm/pull/929) Alexander Torstling, Aslak Hellesøy)
46
* [Java8] Fix IllegalArgumentException on JDK 1.8.0_60 ([#912](https://github.com/cucumber/cucumber-jvm/issues/912), [#914](https://github.com/cucumber/cucumber-jvm/pull/914) Michael Wilkerson)
57
* [Core] Double-check for directory exists in the ensureParentDirExists(File) ([#978](https://github.com/cucumber/cucumber-jvm/pull/978) Pavel Ordenko)
68
* [picocontainer] Picocontainer lifecycle support([#994](https://github.com/cucumber/cucumber-jvm/pull/994), [#993](https://github.com/cucumber/cucumber-jvm/issues/993), [#992](https://github.com/cucumber/cucumber-jvm/pull/992) Richard Bradley)

examples/android/android-studio/Cukeulator/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ android {
3636
dependencies {
3737
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.0'
3838
androidTestCompile 'com.android.support.test:testing-support-lib:0.1'
39-
androidTestCompile 'info.cukes:cucumber-android:1.2.4'
40-
androidTestCompile 'info.cukes:cucumber-picocontainer:1.2.4'
39+
androidTestCompile 'info.cukes:cucumber-android:1.2.5'
40+
androidTestCompile 'info.cukes:cucumber-picocontainer:1.2.5'
4141
}

examples/clojure_cukes/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(defproject clojure_cukes "1.0.X"
22
:description "A demo of Cucumber with Clojure and Leiningen"
3-
:dependencies [[org.clojure/clojure "1.6.0"]]
3+
:dependencies [[org.clojure/clojure "1.8.0"]]
44
:plugins [[lein-cucumber "1.0.2"]]
55
:cucumber-feature-paths ["test/features/"]
66
:profiles

examples/java-gradle/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ task cucumber() {
1818
}
1919

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

24-
testCompile 'junit:junit:4.11'
24+
testCompile 'junit:junit:4.12'
2525
}
2626

2727
repositories {

testng/src/main/java/cucumber/api/testng/CucumberFeatureWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* The only purpose of this interface is to be able to provide a custom
7-
* {@linkplain #toString()}, making TestNG reports look more descriptive.
7+
* <pre>toString()</pre>, making TestNG reports look more descriptive.
88
*
99
* @see CucumberFeatureWrapperImpl
1010
*/

0 commit comments

Comments
 (0)