Skip to content

Commit

Permalink
Merge pull request #111 from joan38/new-scala-version
Browse files Browse the repository at this point in the history
Add Scala versions V3_3_3 and V3_4_0
  • Loading branch information
TonioGela authored Mar 10, 2024
2 parents 03bf948 + e1b022e commit bc0e5da
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ object ScalaVersion {
val V3_1_0 = ScalaVersion(3, 1, 0)
val V3_3_0 = ScalaVersion(3, 3, 0)
val V3_3_1 = ScalaVersion(3, 3, 1)
val V3_3_3 = ScalaVersion(3, 3, 3)
val V3_4_0 = ScalaVersion(3, 4, 0)

private val versionRegex = raw"""(\d+)\.(\d+)\.(\d+)(?:-.*)?""".r
def fromString(version: String): Either[IllegalArgumentException, ScalaVersion] =
Expand Down

0 comments on commit bc0e5da

Please sign in to comment.