Skip to content

Commit d544343

Browse files
committed
Update CHANGELOG and docs for v6.1.1
1 parent 5deda2e commit d544343

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

.gitignore

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
.idea
22
**/*.iml
33
**/target/
4-
examples/pom.xml.releaseBackup
5-
pom.xml.releaseBackup
64
release.properties
7-
scala/pom.xml.releaseBackup
8-
scala/scala_2.11/pom.xml.releaseBackup
9-
scala/scala_2.12/pom.xml.releaseBackup
10-
scala/scala_2.13/pom.xml.releaseBackup
5+
pom.xml.releaseBackup
6+
pom.xml.versionsBackup

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,17 @@ See also the [CHANGELOG](https://github.com/cucumber/cucumber-jvm/blob/master/CH
1313

1414
### Changed
1515

16-
- [Core] Update `cucumber-core` dependency to 6.1.1
17-
1816
### Deprecated
1917

2018
### Removed
2119

2220
### Fixed
2321

22+
## [6.1.1] (2020-06-12)
23+
24+
### Changed
25+
- [Core] Update `cucumber-core` dependency to 6.1.1
26+
2427
## [6.0.0] (2020-06-07)
2528

2629
### Added
@@ -155,7 +158,8 @@ See also the [CHANGELOG](https://github.com/cucumber/cucumber-jvm/blob/master/CH
155158
- [Build] Update Scala versions to 2.11.12 and 2.12.7 ([#11](https://github.com/cucumber/cucumber-jvm-scala/issues/11) Arturas Smorgun)
156159

157160
<!-- Releases -->
158-
[Unreleased]: https://github.com/cucumber/cucumber-jvm-scala/compare/v6.0.0...master
161+
[Unreleased]: https://github.com/cucumber/cucumber-jvm-scala/compare/v6.1.1...master
162+
[6.1.1]: https://github.com/cucumber/cucumber-jvm-scala/compare/v6.0.0...v6.1.1
159163
[6.0.0]: https://github.com/cucumber/cucumber-jvm-scala/compare/v5.7.0...v6.0.0
160164
[5.7.0]: https://github.com/cucumber/cucumber-jvm-scala/compare/v5.6.0...v5.7.0
161165
[5.6.0]: https://github.com/cucumber/cucumber-jvm-scala/compare/v4.7.1...v5.6.0

docs/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
To use Cucumber Scala in your project, add the following line to your `build.sbt`:
88

99
```scala
10-
libraryDependencies += "io.cucumber" %% "cucumber-scala" % "6.0.0" % Test
10+
libraryDependencies += "io.cucumber" %% "cucumber-scala" % "6.1.1" % Test
1111
```
1212

1313
### Maven
@@ -18,7 +18,7 @@ To use Cucumber Scala in your project, add the following dependency to your `pom
1818
<dependency>
1919
<groupId>io.cucumber</groupId>
2020
<artifactId>cucumber-scala_2.12</artifactId>
21-
<version>6.0.0</version>
21+
<version>6.1.1</version>
2222
<scope>test</scope>
2323
</dependency>
2424
```

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.cucumber</groupId>
66
<artifactId>cucumber-jvm-scala</artifactId>
7-
<version>6.0.1-SNAPSHOT</version>
7+
<version>6.1.1-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>scala-examples</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
33
<artifactId>cucumber-jvm-scala</artifactId>
4-
<version>6.0.1-SNAPSHOT</version>
4+
<version>6.1.1-SNAPSHOT</version>
55
<packaging>pom</packaging>
66
<name>Cucumber-JVM: Scala</name>
77
<description>Cucumber for Scala</description>

scala/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.cucumber</groupId>
66
<artifactId>cucumber-jvm-scala</artifactId>
7-
<version>6.0.1-SNAPSHOT</version>
7+
<version>6.1.1-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>cucumber-scala-aggregator</artifactId>

scala/scala_2.11/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.cucumber</groupId>
66
<artifactId>cucumber-scala-aggregator</artifactId>
7-
<version>6.0.1-SNAPSHOT</version>
7+
<version>6.1.1-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>cucumber-scala_2.11</artifactId>

scala/scala_2.12/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.cucumber</groupId>
66
<artifactId>cucumber-scala-aggregator</artifactId>
7-
<version>6.0.1-SNAPSHOT</version>
7+
<version>6.1.1-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>cucumber-scala_2.12</artifactId>

scala/scala_2.13/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.cucumber</groupId>
66
<artifactId>cucumber-scala-aggregator</artifactId>
7-
<version>6.0.1-SNAPSHOT</version>
7+
<version>6.1.1-SNAPSHOT</version>
88
</parent>
99

1010
<artifactId>cucumber-scala_2.13</artifactId>

0 commit comments

Comments
 (0)