Skip to content

Commit

Permalink
Bumped some version thingies
Browse files Browse the repository at this point in the history
  • Loading branch information
djspiewak committed Dec 18, 2020
1 parent 9bab765 commit 6efe84c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.0.0-M1, 3.0.0-M2, 2.12.12, 2.13.4]
scala: [3.0.0-M2, 3.0.0-M3, 2.12.12, 2.13.4]
java:
- [email protected]
- [email protected]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Based on http://www.haskellforall.com/2013/06/from-zero-to-cooperative-threads-i
libraryDependencies += "org.typelevel" %% "coop" % "<version>"
```

Published for Scala 2.13, 2.12, 3.0.0-M1, and 3.0.0-M2, with cross-publication for ScalaJS 1.x. Depends on Cats Free 2.2.0 and Cats MTL 1.0.0.
Published for Scala 2.13, 2.12, 3.0.0-M2, and 3.0.0-M3, with cross-publication for ScalaJS 1.x. Depends on Cats Free 2.3.1 and Cats MTL 1.1.1.

```scala
import coop.ThreadT
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ThisBuild / publishFullName := "Daniel Spiewak"

ThisBuild / strictSemVer := false

ThisBuild / crossScalaVersions := Seq("3.0.0-M1", "3.0.0-M2", "2.12.12", "2.13.4")
ThisBuild / crossScalaVersions := Seq("3.0.0-M2", "3.0.0-M3", "2.12.12", "2.13.4")

// Restore running the CI on Java 15 (https://github.com/lampepfl/dotty/issues/10131).
ThisBuild / githubWorkflowJavaVersions := Seq("[email protected]", "[email protected]", "[email protected]")
Expand All @@ -46,6 +46,6 @@ lazy val core = crossProject(JSPlatform, JVMPlatform).in(file("core"))
.settings(dottyLibrarySettings)
.settings(
libraryDependencies ++= Seq(
"org.typelevel" %%% "cats-free" % "2.3.0",
"org.typelevel" %%% "cats-mtl" % "1.1.0"))
"org.typelevel" %%% "cats-free" % "2.3.1",
"org.typelevel" %%% "cats-mtl" % "1.1.1"))

0 comments on commit 6efe84c

Please sign in to comment.