Skip to content

Commit

Permalink
Merge pull request #342 from cucumber/cucumber7100
Browse files Browse the repository at this point in the history
Cucumber 7.10.0
  • Loading branch information
gaeljw authored Dec 12, 2022
2 parents e3b7e1e + d13b4e0 commit ef2b49f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ See also the [CHANGELOG](https://github.com/cucumber/cucumber-jvm/blob/master/CH

### Changed

- [Core] Updated `cucumber-core` dependency to [7.10.0](https://github.com/cucumber/cucumber-jvm/blob/main/CHANGELOG.md)
- [Scala] Updated `scala-collection-compat` dependency to 2.9.0
- [Build] Updated `scalafmt` dependency to 2.5.0
- [Build] Updated `sbt-sonatype` dependency to 3.9.15
- [Build] Updated `sbt-version-policy` dependency to 2.1.0
- [Build] Updated `sbt-pgp` dependency to 2.2.1

### Deprecated

### Removed
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ scalaVersion := scala213

// Library versions

val cucumberVersion = "7.9.0"
val cucumberVersion = "7.10.0"
val jacksonVersion = "2.13.4"
val mockitoScalaVersion = "1.17.12"
val junitVersion = "4.13.2"
Expand Down Expand Up @@ -86,7 +86,7 @@ lazy val cucumberScala = (projectMatrix in file("cucumber-scala"))
libraryDependencies ++= {
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, n)) if n == 12 =>
List("org.scala-lang.modules" %% "scala-collection-compat" % "2.8.1")
List("org.scala-lang.modules" %% "scala-collection-compat" % "2.9.0")
case _ => Nil
}
},
Expand Down
4 changes: 2 additions & 2 deletions project/build-dependencies.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
libraryDependencies += "io.cucumber" % "cucumber-core" % "7.9.0"
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.8.1"
libraryDependencies += "io.cucumber" % "cucumber-core" % "7.10.0"
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.9.0"
8 changes: 4 additions & 4 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
addSbtPlugin("com.eed3si9n" % "sbt-projectmatrix" % "0.9.0")

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

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

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

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

0 comments on commit ef2b49f

Please sign in to comment.