Skip to content

Commit

Permalink
Upgrades to Freestyle 0.8.0 (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
juanpedromoreno authored Mar 11, 2018
1 parent ab034b6 commit 88f550c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modules/server/src/main/scala/GrpcServer.scala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import io.grpc._

import scala.concurrent.duration.TimeUnit

@tagless
@tagless(true)
trait GrpcServer {

def start(): FS[Server]
Expand Down
2 changes: 1 addition & 1 deletion modules/server/src/test/scala/protocol/Utils.scala
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ object Utils extends CommonUtils {

object client {

@tagless
@tagless(true)
trait MyRPCClient {
def notAllowed(b: Boolean): FS[C]
def empty: FS[Empty.type]
Expand Down
6 changes: 4 additions & 2 deletions project/ProjectPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ object ProjectPlugin extends AutoPlugin {
lazy val V = new {
val avro4s: String = "1.8.3"
val catsEffect: String = "0.9"
val frees: String = "0.7.0"
val frees: String = "0.8.0"
val fs2ReactiveStreams: String = "0.5.1"
val grpc: String = "1.10.0"
val nettySSL: String = "2.0.7.Final"
Expand All @@ -38,7 +38,7 @@ object ProjectPlugin extends AutoPlugin {
"-language:higherKinds"),
libraryDependencies ++= Seq(
%%("cats-effect", V.catsEffect) % Test,
%%("scalamockScalatest") % Test
%%("scalamockScalatest") % Test
)
)

Expand Down Expand Up @@ -152,6 +152,7 @@ object ProjectPlugin extends AutoPlugin {
}

override def projectSettings: Seq[Def.Setting[_]] =
// format: OFF
scalaMetaSettings ++ sharedReleaseProcess ++ warnUnusedImport ++ Seq(
libraryDependencies ++= commonDeps :+ %("slf4j-nop") % Test,
Test / fork := true,
Expand All @@ -168,4 +169,5 @@ object ProjectPlugin extends AutoPlugin {
GitHubIssuesBadge.apply
)
)
// format: ON
}

0 comments on commit 88f550c

Please sign in to comment.