Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrades scala 2&3 and sbt #1779

Merged
merged 4 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
val scala213 = "2.13.12"
val scala3 = "3.3.3"
val scala213 = "2.13.14"
val scala3 = "3.4.1"

ThisBuild / organization := "io.higherkindness"
ThisBuild / githubOrganization := "47degrees"
Expand Down
4 changes: 3 additions & 1 deletion project/ProjectPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ object ProjectPlugin extends AutoPlugin {
libraryDependencies ++= scalaVersionSpecificDeps(3)(
"com.sksamuel.avro4s" %% "avro4s-core" % "5.0.9"
).value,
scalacOptions --= on(2, 13)("-Wunused:patvars").value
scalacOptions --= on(2, 13)("-Wunused:patvars").value,
scalacOptions --= on(3, 4)("-Xfatal-warnings").value
)

lazy val macroSettings: Seq[Setting[_]] = Seq(
Expand Down Expand Up @@ -261,6 +262,7 @@ object ProjectPlugin extends AutoPlugin {
lazy val haskellIntegrationTestSettings = Seq(
publishArtifact := false,
Test / parallelExecution := false,
scalacOptions -= "-Xfatal-warnings",
libraryDependencies ++= Seq(
"co.fs2" %% "fs2-core" % V.fs2,
"org.scalameta" %% "munit" % V.munit % Test,
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.9.9
sbt.version = 1.10.0
Loading