Skip to content

Commit bc0e5da

Browse files
authored
Merge pull request #111 from joan38/new-scala-version
Add Scala versions V3_3_3 and V3_4_0
2 parents 03bf948 + e1b022e commit bc0e5da

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/src/main/scala/org/typelevel/scalacoptions/ScalaVersion.scala

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ object ScalaVersion {
4343
val V3_1_0 = ScalaVersion(3, 1, 0)
4444
val V3_3_0 = ScalaVersion(3, 3, 0)
4545
val V3_3_1 = ScalaVersion(3, 3, 1)
46+
val V3_3_3 = ScalaVersion(3, 3, 3)
47+
val V3_4_0 = ScalaVersion(3, 4, 0)
4648

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

0 commit comments

Comments
 (0)