Skip to content

Commit

Permalink
Merge pull request #8 from RMSone/version-for-release
Browse files Browse the repository at this point in the history
Add version table and bump to 0.2
  • Loading branch information
frosforever committed Jun 6, 2016
2 parents 1060984 + 5842b65 commit 621173e
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,16 @@ SlickCats
SlickCats is not yet published but can be used by publishing locally via `sbt publishLocal` and then adding
the following to your build definition:
```scala
libraryDependencies += "com.rms.miu" %% "slick-cats" % "1.0-SNAPSHOT"
libraryDependencies += "com.rms.miu" %% "slick-cats" % version
```

Because of possible binary incompatibilities here are the dependency versions used in each release
| slick-cats version | slick version | cats version |
|:------------------:|:-------------:|:------------:|
| 0.1 | 3.1.1 | 0.5.0 |
| 0.2 | 3.1.1 | 0.6.0 |


## Accessing the Instances
Some or all of the following imports may be needed:
```scala
Expand Down Expand Up @@ -50,7 +57,7 @@ implicitly[Functor[DBIO]]
implicitly[Applicative[DBIO]]
```

If therea Monoid exists for `A`, here taken as Int, then the following is also available
If a Monoid exists for `A`, here taken as Int, then the following is also available
```scala
implicitly[Group[DBIO[Int]]]
implicitly[Semigroup[DBIO[Int]]]
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ organization := "com.rms.miu"

name := "slick-cats"

version := "1.0-SNAPSHOT"
version := "0.2-SNAPSHOT"

scalaVersion := "2.11.8"

Expand Down
11 changes: 9 additions & 2 deletions src/main/tut/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,16 @@ SlickCats
SlickCats is not yet published but can be used by publishing locally via `sbt publishLocal` and then adding
the following to your build definition:
```scala
libraryDependencies += "com.rms.miu" %% "slick-cats" % "1.0-SNAPSHOT"
libraryDependencies += "com.rms.miu" %% "slick-cats" % version
```

Because of possible binary incompatibilities here are the dependency versions used in each release
| slick-cats version | slick version | cats version |
|:------------------:|:-------------:|:------------:|
| 0.1 | 3.1.1 | 0.5.0 |
| 0.2 | 3.1.1 | 0.6.0 |


## Accessing the Instances
Some or all of the following imports may be needed:
```tut:silent
Expand Down Expand Up @@ -47,7 +54,7 @@ implicitly[Functor[DBIO]]
implicitly[Applicative[DBIO]]
```

If therea Monoid exists for `A`, here taken as Int, then the following is also available
If a Monoid exists for `A`, here taken as Int, then the following is also available
```tut:silent
implicitly[Group[DBIO[Int]]]
implicitly[Semigroup[DBIO[Int]]]
Expand Down

0 comments on commit 621173e

Please sign in to comment.