From 1226451778dea176cdb2d00229407b932ce0ad5c Mon Sep 17 00:00:00 2001 From: Ben Hutchison Date: Thu, 27 May 2021 19:55:20 +1000 Subject: [PATCH] Scala 3 final (#210) * Scala 3 final --- .github/workflows/ci.yml | 8 ++++---- build.sbt | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1d49030d..08567e15 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.13, 2.13.4, 3.0.0-RC3] + scala: [2.12.13, 2.13.4, 3.0.0] java: [adopt@1.8] runs-on: ${{ matrix.os }} steps: @@ -117,12 +117,12 @@ jobs: tar xf targets.tar rm targets.tar - - name: Download target directories (3.0.0-RC3) + - name: Download target directories (3.0.0) uses: actions/download-artifact@v2 with: - name: target-${{ matrix.os }}-3.0.0-RC3-${{ matrix.java }} + name: target-${{ matrix.os }}-3.0.0-${{ matrix.java }} - - name: Inflate target directories (3.0.0-RC3) + - name: Inflate target directories (3.0.0) run: | tar xf targets.tar rm targets.tar diff --git a/build.sbt b/build.sbt index 53ce5f63..ef0d9c41 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ import sbtcrossproject.CrossPlugin.autoImport.crossProject ThisBuild / githubWorkflowPublishTargetBranches := Seq() -ThisBuild / crossScalaVersions := Seq("2.12.13", "2.13.4", "3.0.0-RC3") +ThisBuild / crossScalaVersions := Seq("2.12.13", "2.13.4", "3.0.0") ThisBuild / scalaVersion := "2.13.4" @@ -20,9 +20,9 @@ lazy val cross = crossProject(JSPlatform, JVMPlatform).in(file(".")). organization := "org.typelevel", sonatypeProfileName := "org.typelevel", libraryDependencies ++= Seq( - "org.typelevel" %%% "cats-core" % "2.6.0", - "org.scalatest" %%% "scalatest" % "3.2.8" % Test, - "org.scalatestplus" %%% "scalacheck-1-15" % "3.2.8.0" % Test, + "org.typelevel" %%% "cats-core" % "2.6.1", + "org.scalatest" %%% "scalatest" % "3.2.9" % Test, + "org.scalatestplus" %%% "scalacheck-1-15" % "3.2.9.0" % Test, ), licenses += ("MIT license", url("http://opensource.org/licenses/MIT")), homepage := Some(url("https://github.com/typelevel/mouse")),