Skip to content

Commit a40e1c2

Browse files
committed
Merge remote-tracking branch 'origin/main' into v7.x
2 parents 4f69db5 + b68eee3 commit a40e1c2

File tree

8 files changed

+22
-12
lines changed

8 files changed

+22
-12
lines changed

CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,20 @@ See also the [CHANGELOG](https://github.com/cucumber/cucumber-jvm/blob/master/CH
1616

1717
### Changed
1818

19-
- [Build] Use Github Actions instead of Travis CI
20-
- [Build] Upgrade Scala to 2.12.13 and 2.13.5
21-
2219
### Deprecated
2320

2421
### Removed
2522

2623
### Fixed
2724

25+
## [6.10.1] (2021-03-09)
26+
27+
### Changed
28+
29+
- [Core] Updated `cucumber-core` dependency to [6.10.1](https://github.com/cucumber/cucumber-jvm/blob/main/CHANGELOG.md)
30+
- [Build] Use Github Actions instead of Travis CI
31+
- [Build] Upgrade Scala to 2.12.13 and 2.13.5
32+
2833
## [6.10.0] (2021-02-15)
2934

3035
### Changed
@@ -273,7 +278,8 @@ See also the [CHANGELOG](https://github.com/cucumber/cucumber-jvm/blob/master/CH
273278
- [Build] Update Scala versions to 2.11.12 and 2.12.7 ([#11](https://github.com/cucumber/cucumber-jvm-scala/issues/11) Arturas Smorgun)
274279

275280
<!-- Releases -->
276-
[Unreleased]: https://github.com/cucumber/cucumber-jvm-scala/compare/v6.10.0...main
281+
[Unreleased]: https://github.com/cucumber/cucumber-jvm-scala/compare/v6.10.1...main
282+
[6.10.1]: https://github.com/cucumber/cucumber-jvm-scala/compare/v6.10.0...v6.10.1
277283
[6.10.0]: https://github.com/cucumber/cucumber-jvm-scala/compare/v6.9.1...v6.10.0
278284
[6.9.1]: https://github.com/cucumber/cucumber-jvm-scala/compare/v6.9.0...v6.9.1
279285
[6.9.0]: https://github.com/cucumber/cucumber-jvm-scala/compare/v6.8.2...v6.9.0

Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ update-changelog:
3535

3636
.configure-cukebot-in-docker:
3737
[ -f '/home/cukebot/configure' ] && /home/cukebot/configure
38-
# Cucumber team provides the passphrase in this variable
39-
export PGP_PASSPHRASE="$GPG_SIGNING_KEY_PASSPHRASE"
4038
.PHONY: .configure-cukebot-in-docker
4139

4240
.release-in-docker: .configure-cukebot-in-docker default update-changelog update-installdoc .commit-and-push-changelog-and-docs

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The minor version might differ because Cucumber Scala may add Scala-related feat
1717

1818
| Cucumber Scala version | Cucumber version | Scala versions |
1919
|------------------------|------------------|------------------|
20-
| 6.10.0 | 6.10.0 | 2.11, 2.12, 2.13 |
20+
| 6.10.1 | 6.10.1 | 2.11, 2.12, 2.13 |
2121
| 5.7.0 | 5.7.0 | 2.11, 2.12, 2.13 |
2222
| 4.7.1 | 4.7.1 | 2.11, 2.12, 2.13 |
2323

build.sbt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ scalaVersion := scala213
3939

4040
// Library versions
4141

42-
val cucumberVersion = "6.10.0"
42+
val cucumberVersion = "6.10.1"
4343
val jacksonVersion = "2.12.2"
4444
val mockitoScalaVersion = "1.16.29"
4545
val junitVersion = "4.13.2"
@@ -151,6 +151,9 @@ ThisBuild / versionPolicyIntention := Compatibility.BinaryAndSourceCompatible
151151
Global / publishMavenStyle := true
152152
Global / publishTo := sonatypePublishToBundle.value
153153

154+
// https://github.com/sbt/sbt-pgp/issues/173
155+
Global / PgpKeys.gpgCommand := (baseDirectory.value / "gpg.sh").getAbsolutePath
156+
154157
// https://github.com/xerial/sbt-sonatype#using-with-sbt-release-plugin
155158
releaseCrossBuild := true
156159
releaseProcess := Seq[ReleaseStep](

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.10.0" % Test
10+
libraryDependencies += "io.cucumber" %% "cucumber-scala" % "6.10.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.10.0</version>
21+
<version>6.10.1</version>
2222
<scope>test</scope>
2323
</dependency>
2424
```

gpg.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#! /bin/sh
2+
3+
gpg --passphrase "${GPG_SIGNING_KEY_PASSPHRASE}" --pinentry-mode loopback $@

project/build-dependencies.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
libraryDependencies += "io.cucumber" % "cucumber-core" % "6.10.0"
1+
libraryDependencies += "io.cucumber" % "cucumber-core" % "6.10.1"
22
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.4.2"

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "1.0.0-RC5")
1414
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.13")
1515

1616
// Publishing
17-
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.5")
17+
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.7")
1818
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")

0 commit comments

Comments
 (0)