From 3d59c56e48a3f42e85450379c372031129942d3d Mon Sep 17 00:00:00 2001 From: Christopher Davenport Date: Tue, 16 Jul 2024 11:55:22 -0700 Subject: [PATCH 1/3] Update Build --- build.sbt | 17 +++++++---------- project/plugins.sbt | 6 +++--- 2 files changed, 10 insertions(+), 13 deletions(-) diff --git a/build.sbt b/build.sbt index 6006a93..f3fe0ea 100644 --- a/build.sbt +++ b/build.sbt @@ -12,21 +12,18 @@ ThisBuild / developers := List( ThisBuild / tlCiReleaseBranches := Seq("main") -// true by default, set to false to publish to s01.oss.sonatype.org -ThisBuild / tlSonatypeUseLegacyHost := true - ThisBuild / githubWorkflowBuildPreamble ++= nativeBrewInstallWorkflowSteps.value -val catsV = "2.10.0" -val catsEffectV = "3.5.3" +val catsV = "2.11.0" +val catsEffectV = "3.5.4" val fs2V = "3.9.4" val munitCatsEffectV = "2.0.0-M4" -ThisBuild / crossScalaVersions := Seq("2.12.18","2.13.12", "3.3.1") -ThisBuild / scalaVersion := "2.13.12" +ThisBuild / crossScalaVersions := Seq("2.12.19","2.13.14", "3.4.2") +ThisBuild / scalaVersion := "2.13.14" ThisBuild / versionScheme := Some("early-semver") // Projects @@ -60,11 +57,11 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform) ).jsSettings( scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind.CommonJSModule)} ).jvmSettings( - libraryDependencies += "com.github.jnr" % "jnr-unixsocket" % "0.38.20" % Test, + libraryDependencies += "com.github.jnr" % "jnr-unixsocket" % "0.38.22" % Test, ) .platformsSettings(JVMPlatform, JSPlatform)( libraryDependencies ++= Seq( - "io.chrisdavenport" %%% "whale-tail-manager" % "0.0.10" % Test, + "io.chrisdavenport" %%% "whale-tail-manager" % "0.0.11" % Test, ) ) .nativeEnablePlugins(ScalaNativeBrewedConfigPlugin) @@ -87,7 +84,7 @@ lazy val examples = crossProject(JVMPlatform, JSPlatform) run / fork := true, ).jsSettings( libraryDependencies ++= Seq( - "io.github.cquiroz" %%% "scala-java-time" % "2.4.0" + "io.github.cquiroz" %%% "scala-java-time" % "2.6.0" ), Compile / mainClass := Some("BasicExample"), scalaJSUseMainModuleInitializer := true, diff --git a/project/plugins.sbt b/project/plugins.sbt index 07d196b..99f416d 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,6 +1,6 @@ -addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.6.5") -addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.6.5") -addSbtPlugin("org.typelevel" % "sbt-typelevel-settings" % "0.6.5") +addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.6.7") +addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.6.7") +addSbtPlugin("org.typelevel" % "sbt-typelevel-settings" % "0.6.7") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.15.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17") From 0021402461a73f367aaeb82f011543b2565c77c4 Mon Sep 17 00:00:00 2001 From: Christopher Davenport Date: Tue, 16 Jul 2024 11:58:34 -0700 Subject: [PATCH 2/3] Update sjs --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 99f416d..ec05beb 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,7 +1,7 @@ addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.6.7") addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.6.7") addSbtPlugin("org.typelevel" % "sbt-typelevel-settings" % "0.6.7") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.15.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17") addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2") From 123f19e303f33f1e1b1fc5e30be2ea695d4d2f11 Mon Sep 17 00:00:00 2001 From: Christopher Davenport Date: Tue, 16 Jul 2024 12:17:06 -0700 Subject: [PATCH 3/3] Update fs2 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index f3fe0ea..609d674 100644 --- a/build.sbt +++ b/build.sbt @@ -17,7 +17,7 @@ ThisBuild / githubWorkflowBuildPreamble ++= nativeBrewInstallWorkflowSteps.value val catsV = "2.11.0" val catsEffectV = "3.5.4" -val fs2V = "3.9.4" +val fs2V = "3.10.2" val munitCatsEffectV = "2.0.0-M4"