-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from jeffmay/jeff/v1/upgrade-all
Upgrade all versions of libraries, sbt, and plugins
- Loading branch information
Showing
7 changed files
with
24 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 9 additions & 2 deletions
11
core-v1/src/main/scala/dsl/DefaultUnwrappedDslImplicitDefinitions.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
package com.rallyhealth.vapors.v1.dsl | ||
package com.rallyhealth.vapors.v1 | ||
|
||
package dsl | ||
|
||
import cats.{Functor, Semigroupal} | ||
|
||
trait DefaultUnwrappedDslImplicitDefinitions extends UnwrappedDslTypes { | ||
|
||
protected final val defn: DslImplicitDefinitions[W, OP] = new DslImplicitDefinitions[W, OP] | ||
protected final val defn: DslImplicitDefinitions[W, OP] = { | ||
implicit val id: Functor[W] with Semigroupal[W] = cats.catsInstancesForId | ||
new DslImplicitDefinitions[W, OP] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version=1.5.5 | ||
sbt.version=1.6.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1") | ||
addSbtPlugin("org.jetbrains.scala" % "sbt-ide-settings" % "1.1.1") | ||
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.3") | ||
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.8.2") | ||
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6") | ||
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.9.3") | ||
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.10") |