Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ non-tpolecat contributors thus far: n4to4, Alexa DeWit, wedens, coltfred
- Added `list` and `vector` convenience methods to `Query`.
- Updated Posgtgres JDBC driver to v42.0.0.
- Added `set` and `setOpt` combinators for building fragments which contain `SET` operations.
- Updated build to sbt 0.13.13

### <a name="0.4.1"></a>New and Noteworthy for Version 0.4.1

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ libraryDependencies += "org.tpolecat" %% "doobie-core" % "0.4.1" // scalaz
If you are using Scala 2.10 you must also add the paradise compiler plugin.

```scala
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.full)
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.patch)
```

It is likely that you will want one or more add-on libraries. **doobie** provides the following, which have the same version as `doobie-core[-cats]` and are released together.
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ lazy val noPublishSettings = Seq(
)

def macroParadise(v: String): List[ModuleID] =
if (v.startsWith("2.10")) List(compilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.full))
if (v.startsWith("2.10")) List(compilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.patch))
else Nil

lazy val ctut = taskKey[Unit]("Copy tut output to blog repo nearby.")
Expand All @@ -157,7 +157,7 @@ def coreSettings(mod: String) =
name := "doobie-" + mod,
description := "Pure functional JDBC layer for Scala.",
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value, // required for shapeless macros
scalaOrganization.value % "scala-reflect" % scalaVersion.value, // required for shapeless macros
"com.chuusai" %% "shapeless" % "2.3.2",
"com.lihaoyi" %% "sourcecode" % "0.1.3"
),
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.12
sbt.version=0.13.13