Skip to content

Commit

Permalink
version 0.18 with minor upgrades of cats, scala, sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
benhutchison committed Aug 9, 2018
1 parent 30739b7 commit d11acff
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ res0: Either[String,Int] = Right(6)

#### Release Notes

Version `0.18` (Aug 18) adds PartialFunction lift to Either and is built against cats `1.2.0`

Version `0.17` (Apr 18) is built against cats `1.1.0`

Version `0.16` (Jan 18) is built against cats `1.0.1`
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ lazy val cross = crossProject.in(file(".")).
settings(
name := "mouse",
organization := "org.typelevel",
scalaVersion := "2.12.5",
crossScalaVersions := Seq("2.10.7", "2.11.12", "2.12.5"),
scalaVersion := "2.12.6",
crossScalaVersions := Seq("2.10.7", "2.11.12", "2.12.6"),
sonatypeProfileName := "org.typelevel",
libraryDependencies ++= Seq(
"org.typelevel" %%% "cats-core" % "1.1.0",
"org.typelevel" %%% "cats-core" % "1.2.0",
"org.scalatest" %%% "scalatest" % "3.0.1" % "test",
"org.scalacheck" %%% "scalacheck" % "1.13.5" % "test"
),
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.1.1
sbt.version=1.2.1
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.22")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.24")

addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.0")

Expand Down

0 comments on commit d11acff

Please sign in to comment.