Skip to content

Conversation

@marcospereira
Copy link
Contributor

  • Add support for Scala 2.13.5
  • Simplify list of crossScalaVersions

// 2.11.6 is the first to be supported and we skip 2.11.9 and 2.11.10
val supportedScala211Versions = Seq("2.11.6", "2.11.7", "2.11.8", "2.11.11", "2.11.12")
// Scala 2.12.[0-2] are not supported
val supportedScala212Versions = (3 to 13).map(p => s"2.12.$p")
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Scala 2.12.[0-2] versions were included before, but the code does not even compile for those versions, which explains they weren't listed in .travis.yml.

(earliest211 to latest211)
.map(i => s"2.11.$i")
.filterNot(skipVersions.contains(_))
ifJavaVersion(_ < 8) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess we are not supporting any Java version older than 8. 🙏🏼

@SethTisue SethTisue merged commit f178854 into master Feb 25, 2021
@SethTisue SethTisue deleted the updates/scala-2.13.5 branch February 25, 2021 05:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants