Skip to content

Commit

Permalink
Support Scala 3 in http4s module (#1328)
Browse files Browse the repository at this point in the history
* Support Scala 3 in http4s module

* Support Scala 3 in ip4s-core module

* Downgrade ip4s-core to last version that support scala30

* Do not compile modules with scala30

* Update SBT version to 1.7.0-RC1

Co-authored-by: Mykhailo Hodovaniuk <mykhailo.hodovaniuk@tain.com>
  • Loading branch information
mhodovaniuk and Mykhailo Hodovaniuk committed Jun 27, 2022
1 parent affacb3 commit 3bbf90c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/http4s/build.sbt
Expand Up @@ -2,7 +2,7 @@ import Dependencies.Version._

name := "pureconfig-http4s"

crossScalaVersions := Seq(scala212, scala213)
crossScalaVersions := Seq(scala212, scala213, scala31)

libraryDependencies ++= Seq("org.http4s" %% "http4s-core" % "0.23.12")

Expand Down
2 changes: 1 addition & 1 deletion modules/ip4s/build.sbt
Expand Up @@ -2,7 +2,7 @@ import Dependencies.Version._

name := "pureconfig-ip4s"

crossScalaVersions := Seq(scala212, scala213)
crossScalaVersions := Seq(scala212, scala213, scala31)

libraryDependencies ++= Seq("com.comcast" %% "ip4s-core" % "3.1.3")

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version=1.6.2
sbt.version=1.7.0-RC1

0 comments on commit 3bbf90c

Please sign in to comment.