From 8b3dab981f299605ef937f3faf883cf3b136f112 Mon Sep 17 00:00:00 2001 From: Travis Brown Date: Thu, 27 May 2021 12:14:13 +0200 Subject: [PATCH] Updates (#197) --- .github/workflows/ci.yml | 2 +- build.sbt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0dabe10b..d350e997 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.13, 2.13.5] + scala: [2.12.13, 2.13.6] java: [adopt@1.8] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index 42197058..e3e2a728 100644 --- a/build.sbt +++ b/build.sbt @@ -24,7 +24,7 @@ def priorTo2_13(scalaVersion: String): Boolean = case _ => false } -ThisBuild / crossScalaVersions := Seq("2.12.13", "2.13.5") +ThisBuild / crossScalaVersions := Seq("2.12.13", "2.13.6") val baseSettings = Seq( scalacOptions ++= compilerOptions, @@ -80,7 +80,7 @@ lazy val optics = crossProject(JSPlatform, JVMPlatform) ) .jsSettings( libraryDependencies += - "io.github.cquiroz" %%% "scala-java-time" % "2.2.2" % Test, + "io.github.cquiroz" %%% "scala-java-time" % "2.3.0" % Test, coverageEnabled := false )