Skip to content

Commit 581d86d

Browse files
committed
chore: 🤖 Bump Scala versions
1 parent ee7e95b commit 581d86d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

‎CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ See also the [CHANGELOG](https://github.com/cucumber/cucumber-jvm/blob/master/CH
1414
### Changed
1515

1616
- [Build] Use Github Actions instead of Travis CI
17+
- [Build] Upgrade Scala to 2.12.13 and 2.13.5
1718

1819
### Deprecated
1920

‎build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ ThisBuild / homepage := Some(
3131
// Scala versions
3232

3333
val scala211 = "2.11.12"
34-
val scala212 = "2.12.12"
35-
val scala213 = "2.13.3"
34+
val scala212 = "2.12.13"
35+
val scala213 = "2.13.5"
3636

3737
scalaVersion := scala213
3838

‎cucumber-scala/src/test/scala/tests/cukes/TypeRegistryConfiguration.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class TypeRegistryConfiguration extends ScalaDsl {
1717
val direction = s.toList match {
1818
case '<' :: _ => Symbol("west")
1919
case l if l.last == '>' => Symbol("east")
20+
case _ => Symbol("unknown")
2021
}
2122
Snake(size, direction)
2223
}

0 commit comments

Comments
 (0)