Skip to content

Commit

Permalink
Remove dependency on pureharm-effects-cats
Browse files Browse the repository at this point in the history
  • Loading branch information
lorandszakacs committed Apr 5, 2021
1 parent 3cb6235 commit 52a1dd6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## deprecations

- deprecate `DBConnectionConfig` companion object. Use [pureharm-config-ciris](https://github.com/busymachines/pureharm-config-ciris), or some other config library of your choice to read these values on your own terms.
- deprecate all methods in Repo that take multiple elements. Will be removed since API is extremely clunky, and will be pushed down to be DB specific.

### dependency upgrades

- [pureharm-core-anomaly](https://github.com/busymachines/pureharm-core/releases) `0.2.0`
- [pureharm-core-sprout](https://github.com/busymachines/pureharm-core/releases) `0.2.0`
- [pureharm-effects-cats](https://github.com/busymachines/pureharm-effects-cats/releases) `0.2.0`
- [pureharm-config](https://github.com/busymachines/pureharm-config/releases) `0.2.0`

# 0.1.0
Expand Down
2 changes: 0 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ ThisBuild / resolvers += Resolver.sonatypeRepo("releases")
ThisBuild / resolvers += Resolver.sonatypeRepo("snapshots")

val pureharmCoreV = "0.2.0" //https://github.com/busymachines/pureharm-core/releases
val pureharmEffectsV = "0.2.0" //https://github.com/busymachines/pureharm-effects-cats/releases
val pureharmConfigV = "0.2.0" //https://github.com/busymachines/pureharm-config/releases

//=============================================================================
Expand All @@ -108,7 +107,6 @@ lazy val `db-core` = project
libraryDependencies ++= Seq(
"com.busymachines" %% "pureharm-core-anomaly" % pureharmCoreV withSources(),
"com.busymachines" %% "pureharm-core-sprout" % pureharmCoreV withSources(),
"com.busymachines" %% "pureharm-effects-cats" % pureharmEffectsV withSources(),
"com.busymachines" %% "pureharm-config" % pureharmConfigV withSources(),
),
).settings(
Expand Down
2 changes: 1 addition & 1 deletion db-core/src/main/scala/busymachines/pureharm/db/Repo.scala
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

package busymachines.pureharm.db

import busymachines.pureharm.effects.{Show, Traverse}
import cats.{Show, Traverse}

/** @tparam E
* The type of elements manipulated by this DAO
Expand Down

0 comments on commit 52a1dd6

Please sign in to comment.