Skip to content

Commit

Permalink
Scala 3 final (#210)
Browse files Browse the repository at this point in the history
* Scala 3 final
  • Loading branch information
benhutchison authored May 27, 2021
1 parent b354ba1 commit 1226451
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: [[email protected]]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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")),
Expand Down

0 comments on commit 1226451

Please sign in to comment.