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 scala-library to 2.13.14 #622

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all 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
Update scala-library to 2.13.14
scala-steward committed May 6, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit f2e5841b6143582fe78680304c229d2e049fa0b4
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ import org.scalajs.linker.interface.ModuleInitializer

val Scala3 = "3.3.1"

val Scala213 = "2.13.10"
val Scala213 = "2.13.14"

val Scala212 = "2.12.18"

6 changes: 3 additions & 3 deletions examples/fullapp/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ThisBuild / resolvers ++= Resolver.sonatypeOssRepos("snapshots")

ThisBuild / scalaVersion := "2.13.10"
ThisBuild / scalaVersion := "2.13.14"

ThisBuild / cancelable := true

@@ -11,8 +11,8 @@ val grpcVersion = "1.50.1"
lazy val protos = crossProject(JSPlatform, JVMPlatform)
.in(file("protos"))
.settings(
Compile / PB.targets := Seq(
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
Compile / PB.targets := Seq(
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value
),
Compile / PB.protoSources := Seq(
6 changes: 3 additions & 3 deletions examples/helloworld/build.sbt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
scalaVersion := "2.13.10"
scalaVersion := "2.13.14"

resolvers ++= Resolver.sonatypeOssRepos("snapshots")

val grpcVersion = "1.50.1"

Compile / PB.targets := Seq(
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value
)

libraryDependencies ++= Seq(
"io.grpc" % "grpc-netty" % grpcVersion,
"io.grpc" % "grpc-netty" % grpcVersion,
"com.thesamet.scalapb" %% "scalapb-runtime-grpc" % scalapb.compiler.Version.scalapbVersion
)

8 changes: 4 additions & 4 deletions examples/routeguide/build.sbt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
scalaVersion := "2.13.10"
scalaVersion := "2.13.14"

resolvers ++= Resolver.sonatypeOssRepos("snapshots")

val grpcVersion = "1.50.1"

Compile / PB.targets := Seq(
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value
)

libraryDependencies ++= Seq(
"io.grpc" % "grpc-netty" % grpcVersion,
"io.grpc" % "grpc-netty" % grpcVersion,
"com.thesamet.scalapb" %% "scalapb-runtime-grpc" % scalapb.compiler.Version.scalapbVersion,
"com.thesamet.scalapb" %% "scalapb-json4s" % "0.12.0"
"com.thesamet.scalapb" %% "scalapb-json4s" % "0.12.0"
)

run / fork := true