Skip to content

Commit

Permalink
Merge pull request #279 from profunktor/release/0.10.0-RC1
Browse files Browse the repository at this point in the history
Polishing release v0.10.0-RC1
  • Loading branch information
gvolpe authored May 9, 2020
2 parents df85762 + 8bda1c1 commit 4dbad69
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ package dev.profunktor.redis4cats.effect
import java.util.concurrent.CompletableFuture

import cats.effect.{ Blocker, ContextShift, IO }
import cats.syntax.all._
import dev.profunktor.redis4cats.testutils.Redis4CatsAsyncFunSuite
import scala.concurrent.ExecutionContext

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
package dev.profunktor.redis4cats

import cats.effect.{ ExitCode, IO, IOApp }
import cats.syntax.functor._
import dev.profunktor.redis4cats.effect.Log
import dev.profunktor.redis4cats.log4cats._
import io.chrisdavenport.log4cats.Logger
Expand Down
26 changes: 13 additions & 13 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import sbt._

object Dependencies {

object Versions {
object V {
val cats = "2.1.1"
val catsEffect = "2.1.2"
val catsEffect = "2.1.3"
val fs2 = "2.3.0"
val log4cats = "1.0.1"

Expand All @@ -20,32 +20,32 @@ object Dependencies {
}

object Libraries {
def cats(artifact: String): ModuleID = "org.typelevel" %% s"cats-$artifact" % Versions.cats
def log4cats(artifact: String): ModuleID = "io.chrisdavenport" %% s"log4cats-$artifact" % Versions.log4cats
def cats(artifact: String): ModuleID = "org.typelevel" %% s"cats-$artifact" % V.cats
def log4cats(artifact: String): ModuleID = "io.chrisdavenport" %% s"log4cats-$artifact" % V.log4cats

val catsEffect = "org.typelevel" %% "cats-effect" % Versions.catsEffect
val fs2Core = "co.fs2" %% "fs2-core" % Versions.fs2
val catsEffect = "org.typelevel" %% "cats-effect" % V.catsEffect
val fs2Core = "co.fs2" %% "fs2-core" % V.fs2

val log4CatsCore = log4cats("core")
val log4CatsSlf4j = log4cats("slf4j")

val redisClient = "io.lettuce" % "lettuce-core" % Versions.lettuce
val logback = "ch.qos.logback" % "logback-classic" % Versions.logback
val redisClient = "io.lettuce" % "lettuce-core" % V.lettuce
val logback = "ch.qos.logback" % "logback-classic" % V.logback

// Scala test libraries
val catsLaws = cats("core")
val catsTestKit = cats("testkit")
val catsTestKitST = "org.typelevel" %% "cats-testkit-scalatest" % "1.0.1"

val scalaTest = "org.scalatest" %% "scalatest" % Versions.scalaTest
val scalaCheck = "org.scalacheck" %% "scalacheck" % Versions.scalaCheck
val scalaTest = "org.scalatest" %% "scalatest" % V.scalaTest
val scalaCheck = "org.scalacheck" %% "scalacheck" % V.scalaCheck
}

object CompilerPlugins {
val betterMonadicFor = compilerPlugin("com.olegpy" %% "better-monadic-for" % Versions.betterMonadicFor)
val contextApplied = compilerPlugin("org.augustjune" %% "context-applied" % Versions.contextApplied)
val betterMonadicFor = compilerPlugin("com.olegpy" %% "better-monadic-for" % V.betterMonadicFor)
val contextApplied = compilerPlugin("org.augustjune" %% "context-applied" % V.contextApplied)
val kindProjector = compilerPlugin(
"org.typelevel" % "kind-projector" % Versions.kindProjector cross CrossVersion.full
"org.typelevel" % "kind-projector" % V.kindProjector cross CrossVersion.full
)
}

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.0-SNAPSHOT"
version in ThisBuild := "0.10.0-RC1"

0 comments on commit 4dbad69

Please sign in to comment.