Skip to content

Commit

Permalink
Merge pull request #53 from karolchmist/update-cats-to-2.2.0
Browse files Browse the repository at this point in the history
Update cats to 2.2.0, slick-cats to 0.10.3
  • Loading branch information
23will authored Dec 22, 2020
2 parents 9e7434b + bef814c commit 4d40c81
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ Because of possible binary incompatibilities here are the dependency versions us
| 0.8 | 3.2.3 | 1.2.x |
| 0.9.0 | 3.2.3 | 1.5.x |
| 0.9.1 | 3.3.0 | 1.5.x |
| 0.10.1 | 3.3.2 | 2.0.0 |
| 0.10.2 | 3.3.2 | 2.1.0 |
| 0.10.1 | 3.3.2 | 2.0.0 |
| 0.10.2 | 3.3.2 | 2.1.0 |
| 0.10.3 | 3.3.2 | 2.2.0 |

Artifacts are publicly available on Maven Central starting from version *0.6*.

Expand All @@ -50,7 +51,7 @@ Artifacts are publicly available on Maven Central starting from version *0.6*.
Some or all of the following imports may be needed:
```scala
import cats._
import cats.implicits._
import cats.syntax.all._
import slick.dbio._
import com.rms.miu.slickcats.DBIOInstances._
```
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ val commonSettings = Seq(
)
)

val catsVersion = "2.1.0"
val catsVersion = "2.2.0"

lazy val slickcats =
project.in(file("slick-cats"))
Expand Down
5 changes: 4 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,17 @@ Because of possible binary incompatibilities here are the dependency versions us
| 0.8 | 3.2.3 | 1.2.x |
| 0.9.0 | 3.2.3 | 1.5.x |
| 0.9.1 | 3.3.0 | 1.5.x |
| 0.10.1 | 3.3.2 | 2.0.0 |
| 0.10.2 | 3.3.2 | 2.1.0 |
| 0.10.3 | 3.3.2 | 2.2.0 |

Artifacts are publicly available on Maven Central starting from version *0.6*.

## Accessing the Instances
Some or all of the following imports may be needed:
```scala mdoc:silent
import cats._
import cats.implicits._
import cats.syntax.all._
import slick.dbio._
import com.rms.miu.slickcats.DBIOInstances._
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
package com.rms.miu.slickcats

import cats._
import cats.implicits._
import cats.syntax.all._
import slick.basic.BasicBackend
import slick.dbio._

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
package com.rms.miu.slickcats

import cats.data.EitherT
import cats.implicits._
import cats.instances.AllInstances
import cats.laws.discipline.SemigroupalTests.Isomorphisms
import cats.laws.discipline._
import cats.syntax.all._
import cats.{Comonad, Eq}
import org.scalacheck.Arbitrary.arbitrary
import org.scalacheck.{Arbitrary, Cogen, Gen}
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.10.2"
version in ThisBuild := "0.10.3"

0 comments on commit 4d40c81

Please sign in to comment.