Skip to content
This repository was archived by the owner on Jun 9, 2020. It is now read-only.

Commit 8041358

Browse files
authored
Merge pull request #21 from rkrzewski/cats-1.0.0-RC1
Upgrade to cats 1.0.0-RC1, cats-effect 0.5
2 parents 1266d67 + 7f89fab commit 8041358

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ Important: FS2 0.10+ has a direct dependency on Cats and Cats Effect so this lib
1616
### <a id="getit"></a> Where to get the latest version ###
1717

1818
```scala
19+
// Available for Scala 2.11.11 / 2.12.4 + Cats 1.0.0-RC1 + Cats Effect 0.5 + FS2 0.9
20+
libraryDependencies += "co.fs2" %% "fs2-cats" % "0.5.0"
21+
1922
// Available for Scala 2.11.11 / 2.12.3 + Cats 1.0.0-MF + Cats Effect 0.4 + FS2 0.9
2023
libraryDependencies += "co.fs2" %% "fs2-cats" % "0.4.0"
2124

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ lazy val contributors = Seq(
1414
"guersam" -> "Jisoo Park"
1515
)
1616

17-
val catsVersion = "1.0.0-MF"
17+
val catsVersion = "1.0.0-RC1"
1818

1919
def scmBranch(v: String): String = {
2020
val Some(ver) = Version(v)
@@ -25,7 +25,7 @@ lazy val commonSettings = Seq(
2525
name := "fs2-cats",
2626
organization := "co.fs2",
2727
scalaVersion := "2.11.11",
28-
crossScalaVersions := Seq("2.11.11", "2.12.3"),
28+
crossScalaVersions := Seq("2.11.11", "2.12.4"),
2929
scalacOptions ++= Seq(
3030
"-feature",
3131
"-deprecation",
@@ -41,10 +41,10 @@ lazy val commonSettings = Seq(
4141
scalacOptions in (Compile, console) ~= {_.filterNot("-Ywarn-unused-import" == _)},
4242
scalacOptions in (Test, console) := (scalacOptions in (Compile, console)).value,
4343
libraryDependencies ++= Seq(
44-
"co.fs2" %%% "fs2-core" % "0.9.2",
44+
"co.fs2" %%% "fs2-core" % "0.9.7",
4545
"org.typelevel" %%% "cats-core" % catsVersion,
4646
"org.typelevel" %%% "cats-laws" % catsVersion % "test",
47-
"org.typelevel" %%% "cats-effect" % "0.4"
47+
"org.typelevel" %%% "cats-effect" % "0.5"
4848
),
4949
scmInfo := Some(ScmInfo(url("https://github.com/functional-streams-for-scala/fs2-cats"), "[email protected]:functional-streams-for-scala/fs2-cats.git")),
5050
homepage := Some(url("https://github.com/functional-streams-for-scala/fs2")),

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "0.4.1-SNAPSHOT"
1+
version in ThisBuild := "0.5.0-SNAPSHOT"

0 commit comments

Comments
 (0)