Skip to content

Commit

Permalink
Merge pull request #74 from harrydevnull/master
Browse files Browse the repository at this point in the history
Updating the circe dependency to 0.9-M2
  • Loading branch information
jeremyrsmith authored Nov 27, 2017
2 parents 1cd0911 + c438995 commit 2fc8211
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ enablePlugins(TutPlugin)

lazy val buildSettings = Seq(
organization := "io.github.finagle",
version := "0.3.1",
version := "0.3.2",
scalaVersion := "2.12.2",
crossScalaVersions := Seq("2.11.11", "2.12.2")
)
Expand Down
2 changes: 1 addition & 1 deletion featherbed-circe/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "featherbed-circe"

val circeVersion = "0.8.0"
val circeVersion = "0.9.0-M2"

libraryDependencies ++= Seq(
"io.circe" %% "circe-core" % circeVersion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import shapeless.Witness

package object circe {

private val printer = Printer.noSpaces.copy(dropNullKeys = true)
private val printer = Printer.noSpaces.copy(dropNullValues = true)

implicit def circeEncoder[A: Encoder]: content.Encoder[A, Witness.`"application/json"`.T] =
content.Encoder.of("application/json") {
Expand Down

0 comments on commit 2fc8211

Please sign in to comment.