Skip to content

Commit

Permalink
Upgrade Dependencies (#75)
Browse files Browse the repository at this point in the history
Upgrade Dependencies
  • Loading branch information
ChristopherDavenport authored Jan 9, 2020
2 parents f3b4b40 + c207958 commit 09291ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ lazy val site = project.in(file("site"))
val catsV = "2.0.0"
val catsEffectV = "2.0.0"
val epimetheusV = "0.3.0"
val mulesV = "0.3.0"
val mulesV = "0.4.0-M1"

val specs2V = "4.8.2"
val specs2V = "4.8.3"

val kindProjectorV = "0.11.0"
val betterMonadicForV = "0.3.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,6 @@ object CacheLookupCounter {

override def delete(k: K): F[Unit] = innerL.delete(k)
override def insert(k: K, v: V): F[Unit] = innerL.insert(k, v)
override def insertWithTimeout(optionTimeout: Option[TimeSpec])(k: K, v: V): F[Unit] =
innerL.insertWithTimeout(optionTimeout)(k, v)
}

private class LookupCounted[F[_]: Monad, K, V](
Expand All @@ -126,8 +124,6 @@ object CacheLookupCounter {
}
def delete(k: K): F[Unit] = innerL.delete(k)
def insert(k: K, v: V): F[Unit] = innerL.insert(k, v)
def insertWithTimeout(optionTimeout: Option[TimeSpec])(k: K, v: V): F[Unit] =
innerL.insertWithTimeout(optionTimeout)(k, v)
}


Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.0")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.1.10")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.6.1")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.1.0")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.1.1")
addSbtPlugin("com.47deg" % "sbt-microsites" % "1.0.2")
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "0.6.1")
Expand Down

0 comments on commit 09291ab

Please sign in to comment.