Skip to content

Commit 3d59c56

Browse files
Update Build
1 parent c04f08d commit 3d59c56

File tree

2 files changed

+10
-13
lines changed

2 files changed

+10
-13
lines changed

build.sbt

+7-10
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,18 @@ ThisBuild / developers := List(
1212

1313
ThisBuild / tlCiReleaseBranches := Seq("main")
1414

15-
// true by default, set to false to publish to s01.oss.sonatype.org
16-
ThisBuild / tlSonatypeUseLegacyHost := true
17-
1815
ThisBuild / githubWorkflowBuildPreamble ++= nativeBrewInstallWorkflowSteps.value
1916

2017

21-
val catsV = "2.10.0"
22-
val catsEffectV = "3.5.3"
18+
val catsV = "2.11.0"
19+
val catsEffectV = "3.5.4"
2320
val fs2V = "3.9.4"
2421

2522

2623
val munitCatsEffectV = "2.0.0-M4"
2724

28-
ThisBuild / crossScalaVersions := Seq("2.12.18","2.13.12", "3.3.1")
29-
ThisBuild / scalaVersion := "2.13.12"
25+
ThisBuild / crossScalaVersions := Seq("2.12.19","2.13.14", "3.4.2")
26+
ThisBuild / scalaVersion := "2.13.14"
3027
ThisBuild / versionScheme := Some("early-semver")
3128

3229
// Projects
@@ -60,11 +57,11 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform)
6057
).jsSettings(
6158
scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind.CommonJSModule)}
6259
).jvmSettings(
63-
libraryDependencies += "com.github.jnr" % "jnr-unixsocket" % "0.38.20" % Test,
60+
libraryDependencies += "com.github.jnr" % "jnr-unixsocket" % "0.38.22" % Test,
6461
)
6562
.platformsSettings(JVMPlatform, JSPlatform)(
6663
libraryDependencies ++= Seq(
67-
"io.chrisdavenport" %%% "whale-tail-manager" % "0.0.10" % Test,
64+
"io.chrisdavenport" %%% "whale-tail-manager" % "0.0.11" % Test,
6865
)
6966
)
7067
.nativeEnablePlugins(ScalaNativeBrewedConfigPlugin)
@@ -87,7 +84,7 @@ lazy val examples = crossProject(JVMPlatform, JSPlatform)
8784
run / fork := true,
8885
).jsSettings(
8986
libraryDependencies ++= Seq(
90-
"io.github.cquiroz" %%% "scala-java-time" % "2.4.0"
87+
"io.github.cquiroz" %%% "scala-java-time" % "2.6.0"
9188
),
9289
Compile / mainClass := Some("BasicExample"),
9390
scalaJSUseMainModuleInitializer := true,

project/plugins.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.6.5")
2-
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.6.5")
3-
addSbtPlugin("org.typelevel" % "sbt-typelevel-settings" % "0.6.5")
1+
addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.6.7")
2+
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.6.7")
3+
addSbtPlugin("org.typelevel" % "sbt-typelevel-settings" % "0.6.7")
44
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.15.0")
55
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
66
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17")

0 commit comments

Comments
 (0)