Skip to content

Commit 5347051

Browse files
committed
Update scala-library to 2.13.12
1 parent 9a804c8 commit 5347051

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import org.scalajs.linker.interface.ModuleInitializer
33

44
val Scala3 = "3.3.1"
55

6-
val Scala213 = "2.13.10"
6+
val Scala213 = "2.13.12"
77

88
val Scala212 = "2.12.18"
99

examples/fullapp/build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ThisBuild / resolvers ++= Resolver.sonatypeOssRepos("snapshots")
22

3-
ThisBuild / scalaVersion := "2.13.10"
3+
ThisBuild / scalaVersion := "2.13.12"
44

55
ThisBuild / cancelable := true
66

@@ -11,8 +11,8 @@ val grpcVersion = "1.50.1"
1111
lazy val protos = crossProject(JSPlatform, JVMPlatform)
1212
.in(file("protos"))
1313
.settings(
14-
Compile / PB.targets := Seq(
15-
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
14+
Compile / PB.targets := Seq(
15+
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
1616
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value
1717
),
1818
Compile / PB.protoSources := Seq(

examples/helloworld/build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
scalaVersion := "2.13.10"
1+
scalaVersion := "2.13.12"
22

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

55
val grpcVersion = "1.50.1"
66

77
Compile / PB.targets := Seq(
8-
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
8+
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
99
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value
1010
)
1111

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

examples/routeguide/build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
scalaVersion := "2.13.10"
1+
scalaVersion := "2.13.12"
22

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

55
val grpcVersion = "1.50.1"
66

77
Compile / PB.targets := Seq(
8-
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
8+
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
99
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value
1010
)
1111

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

1818
run / fork := true

0 commit comments

Comments
 (0)