Skip to content

Commit b00eba9

Browse files
authored
Merge pull request #213 from cucumber/cucumber6104
Cucumber 6.10.4 and other minor upgrades
2 parents cc5909a + 8b9bf69 commit b00eba9

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

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

1414
### Changed
1515

16+
- [Core] Updated `cucumber-core` dependency to [6.10.4](https://github.com/cucumber/cucumber-jvm/blob/main/CHANGELOG.md)
17+
- [Scala] Upgrade `scala-collection-compat` to 2.4.4
18+
- [Build] Upgrade `sbt-projectmatrix` to 0.8.0
19+
- [Build] Upgrade `sbt-version-policy` to 1.0.1
20+
1621
### Deprecated
1722

1823
### Removed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ scalaVersion := scala213
3838

3939
// Library versions
4040

41-
val cucumberVersion = "6.10.3"
41+
val cucumberVersion = "6.10.4"
4242
val jacksonVersion = "2.12.3"
4343
val mockitoScalaVersion = "1.16.37"
4444
val junitVersion = "4.13.2"
@@ -83,7 +83,7 @@ lazy val cucumberScala = (projectMatrix in file("cucumber-scala"))
8383
libraryDependencies ++= {
8484
CrossVersion.partialVersion(scalaVersion.value) match {
8585
case Some((2, n)) if n <= 12 =>
86-
List("org.scala-lang.modules" %% "scala-collection-compat" % "2.4.2")
86+
List("org.scala-lang.modules" %% "scala-collection-compat" % "2.4.4")
8787
case _ => Nil
8888
}
8989
},

project/build-dependencies.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
libraryDependencies += "io.cucumber" % "cucumber-core" % "6.10.3"
2-
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.4.3"
1+
libraryDependencies += "io.cucumber" % "cucumber-core" % "6.10.4"
2+
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.4.4"

project/plugins.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// Cross compilation matrix
2-
addSbtPlugin("com.eed3si9n" % "sbt-projectmatrix" % "0.7.0")
2+
addSbtPlugin("com.eed3si9n" % "sbt-projectmatrix" % "0.8.0")
33

44
// Scalafmt (formatter)
55
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.2")
66

77
// Version policy check
8-
addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "1.0.0-RC5")
8+
addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "1.0.1")
99

1010
// Release
1111
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.13")

0 commit comments

Comments
 (0)