Skip to content

Commit ef2b49f

Browse files
authored
Merge pull request #342 from cucumber/cucumber7100
Cucumber 7.10.0
2 parents e3b7e1e + d13b4e0 commit ef2b49f

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

CHANGELOG.md

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

1414
### Changed
1515

16+
- [Core] Updated `cucumber-core` dependency to [7.10.0](https://github.com/cucumber/cucumber-jvm/blob/main/CHANGELOG.md)
17+
- [Scala] Updated `scala-collection-compat` dependency to 2.9.0
18+
- [Build] Updated `scalafmt` dependency to 2.5.0
19+
- [Build] Updated `sbt-sonatype` dependency to 3.9.15
20+
- [Build] Updated `sbt-version-policy` dependency to 2.1.0
21+
- [Build] Updated `sbt-pgp` dependency to 2.2.1
22+
1623
### Deprecated
1724

1825
### 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 = "7.9.0"
41+
val cucumberVersion = "7.10.0"
4242
val jacksonVersion = "2.13.4"
4343
val mockitoScalaVersion = "1.17.12"
4444
val junitVersion = "4.13.2"
@@ -86,7 +86,7 @@ lazy val cucumberScala = (projectMatrix in file("cucumber-scala"))
8686
libraryDependencies ++= {
8787
CrossVersion.partialVersion(scalaVersion.value) match {
8888
case Some((2, n)) if n == 12 =>
89-
List("org.scala-lang.modules" %% "scala-collection-compat" % "2.8.1")
89+
List("org.scala-lang.modules" %% "scala-collection-compat" % "2.9.0")
9090
case _ => Nil
9191
}
9292
},

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" % "7.9.0"
2-
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.8.1"
1+
libraryDependencies += "io.cucumber" % "cucumber-core" % "7.10.0"
2+
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.9.0"

project/plugins.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
addSbtPlugin("com.eed3si9n" % "sbt-projectmatrix" % "0.9.0")
33

44
// Scalafmt (formatter)
5-
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
5+
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
66

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

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

1313
// Publishing
14-
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.13")
15-
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
14+
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.15")
15+
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")

0 commit comments

Comments
 (0)