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

Update scala3-library to 3.4.2 #1007

2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ workflows:
- run_with_localstack:
name: test3
image: sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.2_13_1.9.9_3.3.1
sbt_command: ++3.3.1! core/test interopFutures/test
sbt_command: ++3.4.2! core/test interopFutures/test
requires:
- lint
filters:
Expand Down
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import xerial.sbt.Sonatype.GitHubHosting

val mainScala = "2.13.14"
val allScala = Seq(mainScala, "3.4.1")
val allScala = Seq(mainScala, "3.4.2")

val excludeInferAny = { options: Seq[String] => options.filterNot(Set("-Xlint:infer-any")) }

Expand Down Expand Up @@ -36,7 +36,8 @@ inThisBuild(
url("https://github.com/svroonland")
)
),
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
scalacOptions += "-source 3.3"
)
)

Expand Down